Skip to content

Commit

Permalink
Update pom.xml for jacoco
Browse files Browse the repository at this point in the history
  • Loading branch information
sutheo17 authored May 22, 2024
1 parent 09b2161 commit 1779f7b
Showing 1 changed file with 32 additions and 0 deletions.
32 changes: 32 additions & 0 deletions Drumakomi_sivatag/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,38 @@
<artifactId>Drumakomi_sivatag</artifactId>
<version>1.0-SNAPSHOT</version>


<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>
<properties>
<maven.compiler.source>22</maven.compiler.source>
<maven.compiler.target>22</maven.compiler.target>
Expand Down

0 comments on commit 1779f7b

Please sign in to comment.