Skip to content

Commit

Permalink
pom: add coverage profile
Browse files Browse the repository at this point in the history
  • Loading branch information
Bogdan Drozdowski committed Sep 18, 2023
1 parent d1ba981 commit 0cb0c6b
Showing 1 changed file with 31 additions and 0 deletions.
31 changes: 31 additions & 0 deletions pom.xml
Expand Up @@ -188,4 +188,35 @@ You should have received a copy of the GNU Affero General Public License
</plugins>
</pluginManagement>
</build>
<profile>
<id>coverage</id>
<build>
<plugins>
<plugin>
<groupId>org.jacoco</groupId>
<artifactId>jacoco-maven-plugin</artifactId>
<version>0.8.7</version>
<executions>
<execution>
<id>prepare-agent</id>
<goals>
<goal>prepare-agent</goal>
</goals>
</execution>
<execution>
<id>report</id>
<goals>
<goal>report</goal>
</goals>
<configuration>
<formats>
<format>XML</format>
</formats>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
</project>

0 comments on commit 0cb0c6b

Please sign in to comment.