aboutsummaryrefslogtreecommitdiffstats
path: root/pom.xml
diff options
context:
space:
mode:
Diffstat (limited to 'pom.xml')
-rw-r--r--pom.xml32
1 files changed, 32 insertions, 0 deletions
diff --git a/pom.xml b/pom.xml
index 2ebede7..a0bd22e 100644
--- a/pom.xml
+++ b/pom.xml
@@ -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>