|
|
@ -33,6 +33,10 @@ |
|
|
|
<properties> |
|
|
|
<properties> |
|
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
|
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
|
|
|
<java.version>1.7</java.version> |
|
|
|
<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> |
|
|
|
</properties> |
|
|
|
|
|
|
|
|
|
|
|
<build> |
|
|
|
<build> |
|
|
@ -120,6 +124,34 @@ |
|
|
|
<additionalparam>-Xdoclint:none</additionalparam> |
|
|
|
<additionalparam>-Xdoclint:none</additionalparam> |
|
|
|
</properties> |
|
|
|
</properties> |
|
|
|
</profile> |
|
|
|
</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> |
|
|
|
<profile> |
|
|
|
<id>release-sign-artifacts</id> |
|
|
|
<id>release-sign-artifacts</id> |
|
|
|
<activation> |
|
|
|
<activation> |
|
|
|