Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

You can retrieve the nexus password from 1Password.

NOTE: Bintray and Artifactory are both deprecated, and do not need to be set in your gradle.properties file.

You can also use your personal IHMC credentials (same as what you use to login to wifi) Does not actually work!

Code Block
nexusUsername=<your wifi username>
nexusPassword=<your wifi password>

Selecting a JVM

To select the JVM that Gradle runs itself with, set JAVA_HOME . (This is the version shown with gradle --version)

To select the JVM that Gradle runs your build code with, set org.gradle.java.home. On Windows, you will need to use forward slashes "/" instead of backslashes "\". (see here)

Code Block
titlegradle.properties
org.gradle.java.home=/usr/lib/jvm/java-8-openjdk          # Linux example
org.gradle.java.home=C:/Program Files/Java/jdk-17.0.3     # Windows example

Optimizing JVM memory for better performance

...