Skip to content

Commit 9b394c2

Browse files
committed
Use JDK_16 to build pcollections
1 parent 87b0f6e commit 9b394c2

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

build.gradle

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
ext.JDK_16 = System.getenv("JDK_16")
2+
3+
project('pcollections') {
4+
afterEvaluate {
5+
compileJava {
6+
options.fork = true
7+
options.forkOptions.executable = "${JDK_16}/bin/javac"
8+
}
9+
}
10+
}

0 commit comments

Comments
 (0)