Skip to content

Commit

Permalink
Add jacoco dependency
Browse files Browse the repository at this point in the history
  • Loading branch information
ssylver93 committed Sep 17, 2024
1 parent b179069 commit f6a52eb
Showing 1 changed file with 34 additions and 1 deletion.
35 changes: 34 additions & 1 deletion server/wfprev-api/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -188,7 +188,7 @@
<artifactId>wfone-common-checkhealth</artifactId>
<version>1.4.1-SNAPSHOT</version>
</dependency>

<dependency>
<groupId>io.swagger.core.v3</groupId>
<artifactId>swagger-annotations-jakarta</artifactId>
Expand Down Expand Up @@ -264,5 +264,38 @@
</plugin>
</plugins>
</build>
<profiles>
<profile>
<id>coverage</id>
<build>
<plugins>
<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>
<goals>
<goal>report</goal>
</goals>
<configuration>
<formats>
<format>XML</format>
</formats>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
</profiles>

</project>

0 comments on commit f6a52eb

Please sign in to comment.