Open Derppening opened 5 years ago
In #93, you mentioned the testing procedure is using the following set of commands on lab machines:
git clone <your_URL> .\gradlew build .\gradlew test .\gradlew jacocoTestReport .\gradlew javadoc .\gradlew run
However, I have come to realize that lab machines use JDK 10 by default, as seen by the following screenshot.
The JAVA_HOME environment variable points to C:\Program Files\Java\jdk, which is a shortcut to C:\Program Files\Java\jdk-10.0.1.
JAVA_HOME
C:\Program Files\Java\jdk
C:\Program Files\Java\jdk-10.0.1
This has caused some behavioral changes in regards to Java API deprecations and JavaFX behavior.
Could you please clarify the testing procedure to include a command to set JAVA_HOME to the proper JDK 8 installation?
If you need that, you can state it in your readme.md
In #93, you mentioned the testing procedure is using the following set of commands on lab machines:
However, I have come to realize that lab machines use JDK 10 by default, as seen by the following screenshot.
The
JAVA_HOME
environment variable points toC:\Program Files\Java\jdk
, which is a shortcut toC:\Program Files\Java\jdk-10.0.1
.This has caused some behavioral changes in regards to Java API deprecations and JavaFX behavior.
Could you please clarify the testing procedure to include a command to set
JAVA_HOME
to the proper JDK 8 installation?