You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Jan 15, 2025. It is now read-only.
Relocate the java_path parameter from the Kestrel-specific configuration to the general configuration file. This change centralizes Java-related settings, enhancing consistency and maintainability across different components of the project.
Motivation
Having java_path in the general configuration allows for easier management of Java dependencies and ensures that all parts of the project reference the same Java executable path. This reduces redundancy and potential configuration mismatches.
Acceptance Criteria
Remove java_path from kestrel_config.json.
Add java_path to the main configuration file (e.g., config.json).
Update all scripts and modules to reference java_path from the general configuration.
Ensure existing functionality remains unaffected after the change.
Update documentation to reflect the new configuration structure.
Description
Relocate the
java_pathparameter from the Kestrel-specific configuration to the general configuration file. This change centralizes Java-related settings, enhancing consistency and maintainability across different components of the project.Motivation
Having
java_pathin the general configuration allows for easier management of Java dependencies and ensures that all parts of the project reference the same Java executable path. This reduces redundancy and potential configuration mismatches.Acceptance Criteria
java_pathfromkestrel_config.json.java_pathto the main configuration file (e.g.,config.json).java_pathfrom the general configuration.