Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -18,3 +18,8 @@ testUseReverseProxyServer=false
cloudHost=
cloudKey=
cloudBasePath=

# See https://docs.gradle.org/current/userguide/toolchains.html#sec:custom_loc for information
# on custom toolchain locations in Gradle. Adding these to try to make Jenkins happy.
org.gradle.java.installations.fromEnv=JAVA_HOME_DIR
Copy link
Preview

Copilot AI Aug 29, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The environment variable name 'JAVA_HOME_DIR' is non-standard. The conventional environment variable for Java home is 'JAVA_HOME'. Using 'JAVA_HOME_DIR' may cause Gradle to not detect the Java installation correctly.

Suggested change
org.gradle.java.installations.fromEnv=JAVA_HOME_DIR
org.gradle.java.installations.fromEnv=JAVA_HOME

Copilot uses AI. Check for mistakes.

org.gradle.java.installations.paths=/home/builder/java/jdk-17.0.2,/home/builder/java/jdk-21.0.1