Skip to content

Commit

Permalink
Update root pom.xml with JaCoCo configuration
Browse files Browse the repository at this point in the history
  • Loading branch information
asekawa committed Aug 17, 2024
1 parent b3eee9c commit 5cbfef5
Showing 1 changed file with 46 additions and 1 deletion.
47 changes: 46 additions & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -732,6 +732,11 @@
<artifactId>org.wso2.carbon.identity.configuration.mgt.core</artifactId>
<version>${carbon.identity.framework.version}</version>
</dependency>
<dependency>
<groupId>org.jacoco</groupId>
<artifactId>jacoco-maven-plugin</artifactId>
<version>${jacoco.version}</version>
</dependency>
</dependencies>
</dependencyManagement>

Expand Down Expand Up @@ -810,7 +815,26 @@
<artifactId>findsecbugs-plugin</artifactId>
<version>${findsecbugs-plugin.version}</version>
</plugin>
</plugins>
<plugin>
<groupId>org.jacoco</groupId>
<artifactId>jacoco-maven-plugin</artifactId>
<version>${jacoco.version}</version>
<executions>
<execution>
<goals>
<goal>prepare-agent</goal>
</goals>
</execution>
<execution>
<id>report</id>
<phase>test</phase>
<goals>
<goal>report</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</configuration>
<executions>
<execution>
Expand All @@ -822,6 +846,25 @@
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.jacoco</groupId>
<artifactId>jacoco-maven-plugin</artifactId>
<version>${jacoco.version}</version>
<executions>
<execution>
<goals>
<goal>prepare-agent</goal>
</goals>
</execution>
<execution>
<id>report</id>
<phase>test</phase>
<goals>
<goal>report</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</pluginManagement>

Expand Down Expand Up @@ -1049,6 +1092,8 @@

<!--Identity Apps-->
<authentication.portal.version>1.0.51</authentication.portal.version>

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

</project>

0 comments on commit 5cbfef5

Please sign in to comment.