diff options
author | Mário Franco <mario.ffranco@gmail.com> | 2015-07-20 16:58:46 +0100 |
---|---|---|
committer | Mário Franco <mario.ffranco@gmail.com> | 2015-07-20 16:58:46 +0100 |
commit | 78c7321e853722d9e4f229d2a9c358319f7e3282 (patch) | |
tree | 9d2c6a1d8c62cefb54545fd140b99e6f11fe92bc /pom.xml | |
parent | 1b00a01b61ea6e5fb1e738383658d36d9df89b9d (diff) | |
download | pf4j-78c7321e853722d9e4f229d2a9c358319f7e3282.tar.gz pf4j-78c7321e853722d9e4f229d2a9c358319f7e3282.zip |
Prepare unit test coverage on Travis and Coveralls
Diffstat (limited to 'pom.xml')
-rw-r--r-- | pom.xml | 32 |
1 files changed, 32 insertions, 0 deletions
@@ -33,6 +33,10 @@ <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <java.version>1.7</java.version> + + <junit.version>4.12</junit.version> + <cobertura.version>2.7</cobertura.version> + <coveralls.version>3.1.0</coveralls.version> </properties> <build> @@ -121,6 +125,34 @@ </properties> </profile> <profile> + <id>travis</id> + <activation> + <property> + <name>env.TRAVIS</name> + <value>true</value> + </property> + </activation> + <build> + <plugins> + <plugin> + <groupId>org.codehaus.mojo</groupId> + <artifactId>cobertura-maven-plugin</artifactId> + <version>${cobertura.version}</version> + <configuration> + <formats> + <format>xml</format> + </formats> + </configuration> + </plugin> + <plugin> + <groupId>org.eluder.coveralls</groupId> + <artifactId>coveralls-maven-plugin</artifactId> + <version>${coveralls.version}</version> + </plugin> + </plugins> + </build> + </profile> + <profile> <id>release-sign-artifacts</id> <activation> <property> |