Skip to content

Commit 44250da

Browse files
committed
Fix Kotlin on JDK 16-ea
1 parent 5d74839 commit 44250da

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)