Skip to content

Commit aa81eba

Browse files
authored
Merge pull request #316 from jeffgbutler/fix-kotlin-build
Fix Kotlin on JDK 16-ea
2 parents 4d40652 + 44250da commit aa81eba

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

.github/workflows/ci.yaml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,4 +36,10 @@ jobs:
3636
with:
3737
java-version: ${{ matrix.java }}
3838
- name: Test with Maven
39+
if: matrix.java != '16-ea'
3940
run: ./mvnw test -B -D"license.skip=true"
41+
- name: Test with Maven
42+
if: matrix.java == '16-ea'
43+
run: ./mvnw test -B -D"license.skip=true"
44+
env:
45+
MAVEN_OPTS: --add-opens java.base/java.util=ALL-UNNAMED

0 commit comments

Comments
 (0)