Skip to content

Commit

Permalink
issue-59 adding coveralls integration
Browse files Browse the repository at this point in the history
  • Loading branch information
Luigi R. Viggiano committed Oct 18, 2013
1 parent 729ad7f commit a0443ac
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 7 deletions.
3 changes: 3 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,3 +8,6 @@ jdk:
- openjdk5
install: mvn install -DskipTests=true -B
script: mvn test -B

after_success:
- mvn clean cobertura:cobertura org.eluder.coveralls:coveralls-maven-plugin:cobertura
26 changes: 19 additions & 7 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,8 @@
~ This software is distributable under the BSD license.
~ See the terms of the BSD license in the documentation provided with this software.
-->
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>

<groupId>org.aeonbits.owner</groupId>
Expand Down Expand Up @@ -243,7 +244,7 @@
<id>default-cli</id>
<configuration>
<tasks>
<ant antfile="site/build.xml" target="publish" />
<ant antfile="site/build.xml" target="publish"/>
</tasks>
</configuration>
<goals>
Expand All @@ -252,6 +253,22 @@
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.eluder.coveralls</groupId>
<artifactId>coveralls-maven-plugin</artifactId>
<version>2.0.1</version>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>cobertura-maven-plugin</artifactId>
<version>2.5.2</version>
<configuration>
<formats>
<format>xml</format>
<format>html</format>
</formats>
</configuration>
</plugin>
</plugins>
<extensions>
<extension>
Expand All @@ -268,11 +285,6 @@
<artifactId>maven-project-info-reports-plugin</artifactId>
<version>2.6</version>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>cobertura-maven-plugin</artifactId>
<version>2.5.2</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-report-plugin</artifactId>
Expand Down

0 comments on commit a0443ac

Please sign in to comment.