You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@geode.apache.org by Dan Smith <ds...@pivotal.io> on 2018/09/17 22:05:27 UTC

Running tests with a different JVM (eg Java 10)

FYI, you compile geode against one version of java and test using a
different version of java with the testJVM flag. For example, this would
compile with the default JDK on your machine and run tests with java 9.

./gradlew
-PtestJVM=/Library/Java/JavaVirtualMachines/jdk-9.0.4.jdk/Contents/Home/
test

-Dan