Skip to content

Commit

Permalink
fix: changed coverage
Browse files Browse the repository at this point in the history
  • Loading branch information
Brett Chaldecott committed Oct 22, 2024
1 parent b324e70 commit a8852d6
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/maven.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,6 @@ jobs:
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v4
with:
files: '**/target/site/jacoco/jacoco.xml'
files: '**/target/site/jacoco-aggregate/jacoco.xml'
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
4 changes: 2 additions & 2 deletions kinde-management/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -180,7 +180,7 @@
<plugin>
<groupId>org.jacoco</groupId>
<artifactId>jacoco-maven-plugin</artifactId>
<version>0.8.10</version> <!-- Replace with the latest version -->
<version>0.8.12</version> <!-- Replace with the latest version -->
<configuration>
<excludes>
<exclude>com/google/inject/**/*.class</exclude>
Expand All @@ -206,7 +206,7 @@
</execution>
<execution>
<id>post-unit-test</id>
<phase>test</phase>
<phase>verify</phase>
<goals>
<goal>report</goal>
</goals>
Expand Down

0 comments on commit a8852d6

Please sign in to comment.