Skip to content

Commit

Permalink
Swap Cobertura for JaCoCo as crickets are chirping at cobertura/cober…
Browse files Browse the repository at this point in the history
  • Loading branch information
MER-C committed Oct 12, 2017
1 parent 9e04b19 commit c0adbee
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 12 deletions.
2 changes: 0 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,5 @@ language: java
jdk:
- oraclejdk8

script: "mvn cobertura:cobertura"

after_success:
- bash <(curl -s https://codecov.io/bash)
34 changes: 24 additions & 10 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -106,16 +106,30 @@
</configuration>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>cobertura-maven-plugin</artifactId>
<version>2.7</version>
<configuration>
<formats>
<format>html</format>
<format>xml</format>
</formats>
<check />
</configuration>
<groupId>org.jacoco</groupId>
<artifactId>jacoco-maven-plugin</artifactId>
<version>0.7.9</version>
<executions>
<execution>
<id>default-prepare-agent</id>
<goals>
<goal>prepare-agent</goal>
</goals>
</execution>
<execution>
<id>default-report</id>
<phase>prepare-package</phase>
<goals>
<goal>report</goal>
</goals>
</execution>
<execution>
<id>default-check</id>
<goals>
<goal>check</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</pluginManagement>
Expand Down

0 comments on commit c0adbee

Please sign in to comment.