Skip to content

Commit

Permalink
[JBVFS-222] Enabling code coverage
Browse files Browse the repository at this point in the history
  • Loading branch information
ropalka committed Mar 12, 2024
1 parent 8d9b0de commit 441defe
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,7 @@
</scm>

<properties>
<version.org.jacoco>0.8.11</version.org.jacoco>
<version.org.jboss.logging.jboss-logging>3.5.3.Final</version.org.jboss.logging.jboss-logging>
<version.org.jboss.logging.jboss-logging-tools>2.2.1.Final</version.org.jboss.logging.jboss-logging-tools>
<version.jboss.test>1.2.0.Final</version.jboss.test>
Expand All @@ -87,6 +88,25 @@
</archive>
</configuration>
</plugin>
<plugin>
<groupId>org.jacoco</groupId>
<artifactId>jacoco-maven-plugin</artifactId>
<version>${version.org.jacoco}</version>
<executions>
<execution>
<goals>
<goal>prepare-agent</goal>
</goals>
</execution>
<execution>
<id>generate-code-coverage-report</id>
<phase>test</phase>
<goals>
<goal>report</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
<pluginManagement>
<plugins>
Expand Down

0 comments on commit 441defe

Please sign in to comment.