From 60105d5d9a8b64d29927b98cd06d6d811fd4bb52 Mon Sep 17 00:00:00 2001 From: Stephane Nicoll <snicoll@pivotal.io> Date: Thu, 9 Aug 2018 10:47:13 +0200 Subject: [PATCH] Use Jacoco rather than cobertura --- pom.xml | 37 ++++++++++++------------------------- 1 file changed, 12 insertions(+), 25 deletions(-) diff --git a/pom.xml b/pom.xml index b4d2190..0469cea 100644 --- a/pom.xml +++ b/pom.xml @@ -27,7 +27,7 @@ <webjars-jquery.version>2.2.4</webjars-jquery.version> <wro4j.version>1.8.0</wro4j.version> - <cobertura.version>2.7</cobertura.version> + <jacoco.version>0.8.1</jacoco.version> </properties> @@ -134,17 +134,20 @@ </executions> </plugin> <plugin> - <groupId>org.codehaus.mojo</groupId> - <artifactId>cobertura-maven-plugin</artifactId> - <version>${cobertura.version}</version> - <configuration> - <check /> - </configuration> + <groupId>org.jacoco</groupId> + <artifactId>jacoco-maven-plugin</artifactId> + <version>${jacoco.version}</version> <executions> <execution> <goals> - <goal>clean</goal> - <goal>check</goal> + <goal>prepare-agent</goal> + </goals> + </execution> + <execution> + <id>report</id> + <phase>prepare-package</phase> + <goals> + <goal>report</goal> </goals> </execution> </executions> @@ -201,22 +204,6 @@ </plugin> </plugins> </build> - <reporting> - <plugins> - <!-- integrate maven-cobertura-plugin to project site --> - <plugin> - <groupId>org.codehaus.mojo</groupId> - <artifactId>cobertura-maven-plugin</artifactId> - <version>${cobertura.version}</version> - <configuration> - <formats> - <format>html</format> - </formats> - <check /> - </configuration> - </plugin> - </plugins> - </reporting> <!-- Apache 2 license --> <licenses> -- GitLab