|
|
|
@ -81,8 +81,7 @@
|
|
|
|
|
<maven-deploy-plugin.version>2.8.2</maven-deploy-plugin.version>
|
|
|
|
|
<maven-surefire-plugin.version>2.21.0</maven-surefire-plugin.version>
|
|
|
|
|
<gmavenplus-plugin.version>1.6</gmavenplus-plugin.version>
|
|
|
|
|
<cobertura.version>2.1.1</cobertura.version>
|
|
|
|
|
<cobertura-maven-plugin.version>2.7</cobertura-maven-plugin.version>
|
|
|
|
|
<jacoco.version>0.7.9</jacoco.version>
|
|
|
|
|
</properties>
|
|
|
|
|
|
|
|
|
|
<modules>
|
|
|
|
@ -166,25 +165,10 @@
|
|
|
|
|
<type>pom</type>
|
|
|
|
|
<scope>import</scope>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>net.sourceforge.cobertura</groupId>
|
|
|
|
|
<artifactId>cobertura-runtime</artifactId>
|
|
|
|
|
<version>${cobertura.version}</version>
|
|
|
|
|
<scope>provided</scope>
|
|
|
|
|
<type>pom</type>
|
|
|
|
|
</dependency>
|
|
|
|
|
</dependencies>
|
|
|
|
|
</dependencyManagement>
|
|
|
|
|
|
|
|
|
|
<build>
|
|
|
|
|
<pluginManagement>
|
|
|
|
|
<plugins>
|
|
|
|
|
<plugin>
|
|
|
|
|
<groupId>org.codehaus.mojo</groupId>
|
|
|
|
|
<artifactId>cobertura-maven-plugin</artifactId>
|
|
|
|
|
</plugin>
|
|
|
|
|
</plugins>
|
|
|
|
|
</pluginManagement>
|
|
|
|
|
<plugins>
|
|
|
|
|
<plugin>
|
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
@ -208,30 +192,25 @@
|
|
|
|
|
</configuration>
|
|
|
|
|
</plugin>
|
|
|
|
|
<plugin>
|
|
|
|
|
<groupId>org.codehaus.mojo</groupId>
|
|
|
|
|
<artifactId>cobertura-maven-plugin</artifactId>
|
|
|
|
|
<version>${cobertura-maven-plugin.version}</version>
|
|
|
|
|
<dependencies>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.ow2.asm</groupId>
|
|
|
|
|
<artifactId>asm</artifactId>
|
|
|
|
|
<version>5.0.3</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
</dependencies>
|
|
|
|
|
<groupId>org.jacoco</groupId>
|
|
|
|
|
<artifactId>jacoco-maven-plugin</artifactId>
|
|
|
|
|
<version>${jacoco.version}</version>
|
|
|
|
|
<configuration>
|
|
|
|
|
<quiet>true</quiet>
|
|
|
|
|
<formats>
|
|
|
|
|
<format>html</format>
|
|
|
|
|
<format>xml</format>
|
|
|
|
|
</formats>
|
|
|
|
|
<check/>
|
|
|
|
|
<check />
|
|
|
|
|
<destFile>target/coverage-reports/jacoco-unit.exec</destFile>
|
|
|
|
|
<dataFile>target/coverage-reports/jacoco-unit.exec</dataFile>
|
|
|
|
|
</configuration>
|
|
|
|
|
<executions>
|
|
|
|
|
<execution>
|
|
|
|
|
<phase>package</phase>
|
|
|
|
|
<id>jacoco-initialize</id>
|
|
|
|
|
<goals>
|
|
|
|
|
<goal>prepare-agent</goal>
|
|
|
|
|
</goals>
|
|
|
|
|
</execution>
|
|
|
|
|
<execution>
|
|
|
|
|
<id>jacoco-site</id>
|
|
|
|
|
<phase>test</phase>
|
|
|
|
|
<goals>
|
|
|
|
|
<goal>cobertura</goal>
|
|
|
|
|
<goal>report</goal>
|
|
|
|
|
</goals>
|
|
|
|
|
</execution>
|
|
|
|
|
</executions>
|
|
|
|
|