Skip to content

Commit c9ad9b5

Browse files
committed
update to use cobertura
1 parent d5919ba commit c9ad9b5

File tree

2 files changed

+13
-1
lines changed

2 files changed

+13
-1
lines changed

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,4 @@ before_install:
66
- brew cask install firefox
77
after_success:
88
- bash <(curl -s https://codecov.io/bash)
9-
- mvn clean test coveralls:report
9+
- mvn clean cobertura:cobertura coveralls:report

pom.xml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,18 @@
3636
<artifactId>coveralls-maven-plugin</artifactId>
3737
<version>4.3.0</version>
3838
</plugin>
39+
<plugin>
40+
<groupId>org.codehaus.mojo</groupId>
41+
<artifactId>cobertura-maven-plugin</artifactId>
42+
<version>2.7</version>
43+
<configuration>
44+
<formats>
45+
<format>html</format>
46+
<format>xml</format>
47+
</formats>
48+
<check />
49+
</configuration>
50+
</plugin>
3951
</plugins>
4052
</pluginManagement>
4153
</build>

0 commit comments

Comments
 (0)