We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ac35f94 commit fc51a30Copy full SHA for fc51a30
.github/workflows/ci.yaml
@@ -42,5 +42,9 @@ jobs:
42
key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
43
restore-keys: |
44
${{ runner.os }}-maven-
45
+ - name: Set argLine command line option
46
+ shell: bash
47
+ if: ${{ matrix.java != '8' }}
48
+ run: echo 'ARG_LINE="-DargLine=--illegal-access=permit"' >> $GITHUB_ENV
49
- name: Test with Maven
- run: ./mvnw test -B -D"env.TRAVIS" -D"license.skip=true" -D"jacoco.skip=true" -DargLine="--illegal-access=permit"
50
+ run: ./mvnw test -B -D"env.TRAVIS" -D"license.skip=true" -D"jacoco.skip=true" $ARG_LINE
0 commit comments