Skip to content

Commit

Permalink
build: fix coverage reports
Browse files Browse the repository at this point in the history
  • Loading branch information
poikilotherm committed Mar 4, 2024
1 parent f08d3ec commit 6961500
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -325,9 +325,6 @@
<sonar.projectKey>gdcc_sitemapgen4j</sonar.projectKey>
<sonar.moduleKey>${project.groupId}:${project.artifactId}</sonar.moduleKey>
<sonar.java.coveragePlugin>jacoco</sonar.java.coveragePlugin>
<sonar.coverage.jacoco.xmlReportPaths>
${maven.multiModuleProjectDirectory}/report/target/site/jacoco-aggregate/jacoco.xml
</sonar.coverage.jacoco.xmlReportPaths>
</properties>
<build>
<pluginManagement>
Expand All @@ -351,6 +348,13 @@
<goal>prepare-agent</goal>
</goals>
</execution>
<execution>
<id>report</id>
<phase>test</phase>
<goals>
<goal>report</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
Expand Down

0 comments on commit 6961500

Please sign in to comment.