Skip to content

Commit e304251

Browse files
committed
#1132 one dep up
1 parent f772e5c commit e304251

File tree

2 files changed

+9
-13
lines changed

2 files changed

+9
-13
lines changed

.github/workflows/codecov.yml

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,7 @@ jobs:
99
runs-on: ubuntu-latest
1010
steps:
1111
- uses: actions/checkout@v2
12-
- name: Set up JDK
13-
uses: actions/setup-java@v1
12+
- uses: actions/setup-java@v1
1413
with:
1514
java-version: 11
1615
- uses: actions/cache@v1
@@ -19,10 +18,8 @@ jobs:
1918
key: maven-${{ hashFiles('**/pom.xml') }}
2019
restore-keys: |
2120
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
2623
with:
2724
file: ./target/site/jacoco/jacoco.xml
2825
fail_ci_if_error: true

pom.xml

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,7 @@ SOFTWARE.
121121
<dependency>
122122
<groupId>xml-apis</groupId>
123123
<artifactId>xml-apis</artifactId>
124-
<version>1.4.01</version>
124+
<version>2.0.2</version>
125125
<scope>provided</scope>
126126
</dependency>
127127
<dependency>
@@ -369,7 +369,6 @@ SOFTWARE.
369369
<plugin>
370370
<groupId>org.apache.maven.plugins</groupId>
371371
<artifactId>maven-compiler-plugin</artifactId>
372-
<version>3.8.1</version>
373372
<configuration>
374373
<source>${jdk.version}</source>
375374
<target>${jdk.version}</target>
@@ -412,11 +411,11 @@ SOFTWARE.
412411
</ignoredDependencies>
413412
</configuration>
414413
<!--
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+
-->
420419
</plugin>
421420
</plugins>
422421
</build>

0 commit comments

Comments
 (0)