Skip to content

Commit

Permalink
AYS-136 | Jacoco Build Plugin Has Been Added to pom.xml
Browse files Browse the repository at this point in the history
  • Loading branch information
agitrubard committed Nov 26, 2024
1 parent 75f8e98 commit 0f294a0
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,8 @@
<objenesis.version>3.3</objenesis.version>
<commons-compress.version>1.27.1</commons-compress.version>
<commons-text.version>1.12.0</commons-text.version>

<jacoco.version>0.8.12</jacoco.version>
</properties>

<dependencies>
Expand Down Expand Up @@ -359,6 +361,30 @@
</annotationProcessorPaths>
</configuration>
</plugin>
<plugin>
<groupId>org.jacoco</groupId>
<artifactId>jacoco-maven-plugin</artifactId>
<version>${jacoco.version}</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>

Expand Down

0 comments on commit 0f294a0

Please sign in to comment.