Skip to content

Commit

Permalink
chore: Install jacoco
Browse files Browse the repository at this point in the history
  • Loading branch information
lordrip committed Aug 19, 2024
1 parent bf32635 commit c2ff354
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/codecov.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ codecov:
flags:
ui:
paths:
- packages/ui
- packages/ui/coverage
catalog-generator:
paths:
- packages/catalog-generator
- packages/catalog-generator/target/jacoco
20 changes: 20 additions & 0 deletions packages/catalog-generator/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -184,6 +184,26 @@
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.jacoco</groupId>
<artifactId>jacoco-maven-plugin</artifactId>
<version>0.8.12</version>
<executions>
<execution>
<id>prepare-agent</id>
<goals>
<goal>prepare-agent</goal>
</goals>
</execution>
<execution>
<id>report</id>
<phase>test</phase>
<goals>
<goal>report</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>

0 comments on commit c2ff354

Please sign in to comment.