Skip to content
This repository has been archived by the owner on Jul 1, 2022. It is now read-only.

Commit

Permalink
Converted to JaCoCo and bumped version
Browse files Browse the repository at this point in the history
  • Loading branch information
InfoSec812 committed Apr 18, 2017
1 parent ab3db53 commit 6e5f901
Showing 1 changed file with 39 additions and 17 deletions.
56 changes: 39 additions & 17 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

<groupId>org.sonarqube.auth.google</groupId>
<artifactId>sonar-auth-googleoauth-plugin</artifactId>
<version>1.5.10</version>
<version>1.6.0</version>
<packaging>sonar-plugin</packaging>
<name>Google Authentication for SonarQube</name>
<description>Google Authentication for SonarQube</description>
Expand Down Expand Up @@ -134,27 +134,34 @@
</configuration>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>cobertura-maven-plugin</artifactId>
<version>2.7</version>
<groupId>org.jacoco</groupId>
<artifactId>jacoco-maven-plugin</artifactId>
<version>0.7.9</version>
<configuration>
<destFile>${build.directory}/jacoco.exec</destFile>
<append>true</append>
</configuration>
<executions>
<execution>
<phase>package</phase>
<id>agent-for-ut</id>
<goals>
<goal>prepare-agent</goal>
</goals>
</execution>
<execution>
<id>agent-for-it</id>
<goals>
<goal>prepare-agent-integration</goal>
</goals>
</execution>
<execution>
<id>jacoco-site</id>
<phase>verify</phase>
<goals>
<goal>clean</goal>
<goal>cobertura</goal>
<goal>report</goal>
</goals>
</execution>
</executions>
<configuration>
<check>
</check>
<formats>
<format>html</format>
<format>xml</format>
</formats>
<instrumentation></instrumentation>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
Expand Down Expand Up @@ -204,5 +211,20 @@
</plugin>
</plugins>
</build>

<reporting>
<plugins>
<plugin>
<groupId>org.jacoco</groupId>
<artifactId>jacoco-maven-plugin</artifactId>
<reportSets>
<reportSet>
<reports>
<!-- select non-aggregate reports -->
<report>report</report>
</reports>
</reportSet>
</reportSets>
</plugin>
</plugins>
</reporting>
</project>

0 comments on commit 6e5f901

Please sign in to comment.