File tree 2 files changed +12
-4
lines changed
2 files changed +12
-4
lines changed Original file line number Diff line number Diff line change @@ -20,18 +20,18 @@ jobs:
20
20
- name : Stylecheck
21
21
if : always()
22
22
run : |
23
- mvn -B clean checkstyle:check -Dcheckstyle.failOnViolation=true
23
+ mvn -B --no-transfer-progress clean checkstyle:check -Dcheckstyle.failOnViolation=true
24
24
- name : Licensecheck
25
25
if : always()
26
26
run : |
27
- mvn -B clean license:check-file-header -Dlicence-check.failOnMissingHeader=true
27
+ mvn -B --no-transfer-progress clean license:check-file-header -Dlicence-check.failOnMissingHeader=true
28
28
29
29
BuildAndTest :
30
30
name : Build and Test with java ${{ matrix.java_version }}
31
31
runs-on : ubuntu-latest
32
32
strategy :
33
33
matrix :
34
- java_version : ['8 ', '9 ', '11 ']
34
+ java_version : ['11 ', '17 ', '21 ']
35
35
36
36
steps :
37
37
- name : Checkout
42
42
java-version : ${{ matrix.java_version }}
43
43
- name : Build and test Java ${{ matrix.java_version }}
44
44
run : |
45
- mvn -B clean test -PJava${{ matrix.java_version }}
45
+ mvn -B --no-transfer-progress clean test -PJava${{ matrix.java_version }}
46
46
47
47
48
48
DeployArtifacts :
Original file line number Diff line number Diff line change 305
305
<reuseForks >false</reuseForks >
306
306
<forkCount >1</forkCount >
307
307
<excludedGroups >${testcase.groups.excluded} </excludedGroups >
308
+ <argLine >
309
+ --add-opens=java.base/java.lang=ALL-UNNAMED
310
+ --add-opens=java.base/java.util=ALL-UNNAMED
311
+ --add-opens=java.base/java.util.regex=ALL-UNNAMED
312
+ --add-opens=java.base/java.util.stream=ALL-UNNAMED
313
+ --add-opens=java.base/java.io=ALL-UNNAMED
314
+ --add-opens=java.base/java.net=ALL-UNNAMED
315
+ </argLine >
308
316
</configuration >
309
317
<executions >
310
318
<execution >
You can’t perform that action at this time.
0 commit comments