Skip to content

Commit

Permalink
add jacoco with coverage
Browse files Browse the repository at this point in the history
  • Loading branch information
nobodyiam committed Sep 6, 2016
1 parent 4ff86b8 commit a8b677e
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 1 deletion.
1 change: 1 addition & 0 deletions .travis.yml
Expand Up @@ -15,6 +15,7 @@ before_install:
- pip install --user codecov

after_success:
- mvn clean test jacoco:report coveralls:report
- codecov

branches:
Expand Down
15 changes: 14 additions & 1 deletion pom.xml
Expand Up @@ -403,10 +403,23 @@
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.jacoco</groupId>
<artifactId>jacoco-maven-plugin</artifactId>
<version>0.7.6.201602180812</version>
<executions>
<execution>
<id>prepare-agent</id>
<goals>
<goal>prepare-agent</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.eluder.coveralls</groupId>
<artifactId>coveralls-maven-plugin</artifactId>
<version>4.1.0</version>
<version>4.2.0</version>
</plugin>
</plugins>
</build>
Expand Down

0 comments on commit a8b677e

Please sign in to comment.