Skip to content

Commit

Permalink
#1132 one dep up
Browse files Browse the repository at this point in the history
  • Loading branch information
yegor256 committed Jul 11, 2022
1 parent f772e5c commit e304251
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 13 deletions.
9 changes: 3 additions & 6 deletions .github/workflows/codecov.yml
Expand Up @@ -9,8 +9,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up JDK
uses: actions/setup-java@v1
- uses: actions/setup-java@v1
with:
java-version: 11
- uses: actions/cache@v1
Expand All @@ -19,10 +18,8 @@ jobs:
key: maven-${{ hashFiles('**/pom.xml') }}
restore-keys: |
maven-
- name: Run tests
run: mvn install -Pjacoco
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v1
- run: mvn test -Pjacoco -Dinvoker.skip
- uses: codecov/codecov-action@v1
with:
file: ./target/site/jacoco/jacoco.xml
fail_ci_if_error: true
13 changes: 6 additions & 7 deletions pom.xml
Expand Up @@ -121,7 +121,7 @@ SOFTWARE.
<dependency>
<groupId>xml-apis</groupId>
<artifactId>xml-apis</artifactId>
<version>1.4.01</version>
<version>2.0.2</version>
<scope>provided</scope>
</dependency>
<dependency>
Expand Down Expand Up @@ -369,7 +369,6 @@ SOFTWARE.
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.8.1</version>
<configuration>
<source>${jdk.version}</source>
<target>${jdk.version}</target>
Expand Down Expand Up @@ -412,11 +411,11 @@ SOFTWARE.
</ignoredDependencies>
</configuration>
<!--
@todo #958:30min duplicate-finder-maven-plugin found module-info as duplicate
and different class in [javax.json:javax.json-api:1.1,javax.xml.bind:jaxb-api:2.3.0].
After resolving duplicatefinder in Qulice, remove this plugin and configure qulice
plugin to enable these exclusions (see at https://www.qulice.com/qulice-maven-plugin/example-exclude.html).
-->
@todo #958:30min duplicate-finder-maven-plugin found module-info as duplicate
and different class in [javax.json:javax.json-api:1.1,javax.xml.bind:jaxb-api:2.3.0].
After resolving duplicatefinder in Qulice, remove this plugin and configure qulice
plugin to enable these exclusions (see at https://www.qulice.com/qulice-maven-plugin/example-exclude.html).
-->
</plugin>
</plugins>
</build>
Expand Down

0 comments on commit e304251

Please sign in to comment.