File tree 2 files changed +9
-13
lines changed 2 files changed +9
-13
lines changed Original file line number Diff line number Diff line change 9
9
runs-on : ubuntu-latest
10
10
steps :
11
11
- uses : actions/checkout@v2
12
- - name : Set up JDK
13
- uses : actions/setup-java@v1
12
+ - uses : actions/setup-java@v1
14
13
with :
15
14
java-version : 11
16
15
- uses : actions/cache@v1
19
18
key : maven-${{ hashFiles('**/pom.xml') }}
20
19
restore-keys : |
21
20
maven-
22
- - name : Run tests
23
- run : mvn install -Pjacoco
24
- - name : Upload coverage to Codecov
25
- uses : codecov/codecov-action@v1
21
+ - run : mvn test -Pjacoco -Dinvoker.skip
22
+ - uses : codecov/codecov-action@v1
26
23
with :
27
24
file : ./target/site/jacoco/jacoco.xml
28
25
fail_ci_if_error : true
Original file line number Diff line number Diff line change @@ -121,7 +121,7 @@ SOFTWARE.
121
121
<dependency >
122
122
<groupId >xml-apis</groupId >
123
123
<artifactId >xml-apis</artifactId >
124
- <version >1.4.01 </version >
124
+ <version >2.0.2 </version >
125
125
<scope >provided</scope >
126
126
</dependency >
127
127
<dependency >
@@ -369,7 +369,6 @@ SOFTWARE.
369
369
<plugin >
370
370
<groupId >org.apache.maven.plugins</groupId >
371
371
<artifactId >maven-compiler-plugin</artifactId >
372
- <version >3.8.1</version >
373
372
<configuration >
374
373
<source >${jdk.version} </source >
375
374
<target >${jdk.version} </target >
@@ -412,11 +411,11 @@ SOFTWARE.
412
411
</ignoredDependencies >
413
412
</configuration >
414
413
<!--
415
- @todo #958:30min duplicate-finder-maven-plugin found module-info as duplicate
416
- and different class in [javax.json:javax.json-api:1.1,javax.xml.bind:jaxb-api:2.3.0].
417
- After resolving duplicatefinder in Qulice, remove this plugin and configure qulice
418
- plugin to enable these exclusions (see at https://www.qulice.com/qulice-maven-plugin/example-exclude.html).
419
- -->
414
+ @todo #958:30min duplicate-finder-maven-plugin found module-info as duplicate
415
+ and different class in [javax.json:javax.json-api:1.1,javax.xml.bind:jaxb-api:2.3.0].
416
+ After resolving duplicatefinder in Qulice, remove this plugin and configure qulice
417
+ plugin to enable these exclusions (see at https://www.qulice.com/qulice-maven-plugin/example-exclude.html).
418
+ -->
420
419
</plugin >
421
420
</plugins >
422
421
</build >
You can’t perform that action at this time.
0 commit comments