Repository: incubator-brooklyn Updated Branches: refs/heads/master e4ecb3871 -> 05f087f81
Upgrade cobertura plus minor fixes Project: http://git-wip-us.apache.org/repos/asf/incubator-brooklyn/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-brooklyn/commit/4269da04 Tree: http://git-wip-us.apache.org/repos/asf/incubator-brooklyn/tree/4269da04 Diff: http://git-wip-us.apache.org/repos/asf/incubator-brooklyn/diff/4269da04 Branch: refs/heads/master Commit: 4269da046f9ff061be75e5a3b58358af8c6a8bad Parents: e4ecb38 Author: Duncan Grant <[email protected]> Authored: Mon Jan 12 15:43:57 2015 +0000 Committer: Duncan Grant <[email protected]> Committed: Thu Jan 15 10:35:50 2015 +0000 ---------------------------------------------------------------------- pom.xml | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-brooklyn/blob/4269da04/pom.xml ---------------------------------------------------------------------- diff --git a/pom.xml b/pom.xml index 1f875c4..3b1123c 100644 --- a/pom.xml +++ b/pom.xml @@ -113,7 +113,7 @@ <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> <!-- Testing --> - <cobertura.version>1.9.4.1</cobertura.version> + <cobertura.version>2.5.2</cobertura.version> <surefire.version>2.18</surefire.version> <plantuml.version>6121</plantuml.version> <ant.version>1.8.4</ant.version> @@ -200,6 +200,7 @@ <jsr311-api.version>1.1.1</jsr311-api.version> <maxmind.version>0.8.1</maxmind.version> <jna.version>4.0.0</jna.version> + <coverage.target>${working.dir}</coverage.target> <!-- Release --> <!-- no passphrase by default, so we can do automated deploy builds; @@ -824,7 +825,7 @@ <version>1.7</version> </plugin> <plugin> - <groupId>net.sourceforge.cobertura</groupId> + <groupId>org.codehaus.mojo</groupId> <artifactId>cobertura</artifactId> <version>${cobertura.version}</version> </plugin> @@ -1657,8 +1658,8 @@ <id>Coverage</id> <dependencies> <dependency> - <groupId>net.sourceforge.cobertura</groupId> - <artifactId>cobertura</artifactId> + <groupId>org.codehaus.mojo</groupId> + <artifactId>cobertura-maven-plugin</artifactId> <version>${cobertura.version}</version> <scope>test</scope> </dependency> @@ -1723,7 +1724,7 @@ <then> <echo message="GENERATING COBERTURA COVERAGE REPORT" /> <cobertura-report format="xml" destdir="target/site/cobertura" datafile="target/cobertura/cobertura.ser"> - <fileset erroronmissingdir="false" dir="src/java" /> + <fileset erroronmissingdir="false" dir="src/main/java" /> <fileset erroronmissingdir="false" dir="target/cobertura/dependency-sources" /> </cobertura-report> </then> @@ -1760,8 +1761,8 @@ <version>${testng.version}</version> </dependency> <dependency> - <groupId>net.sourceforge.cobertura</groupId> - <artifactId>cobertura</artifactId> + <groupId>org.codehaus.mojo</groupId> + <artifactId>cobertura-maven-plugin</artifactId> <version>${cobertura.version}</version> </dependency> </dependencies>
