We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d5919ba commit c9ad9b5Copy full SHA for c9ad9b5
.travis.yml
@@ -6,4 +6,4 @@ before_install:
6
- brew cask install firefox
7
after_success:
8
- bash <(curl -s https://codecov.io/bash)
9
- - mvn clean test coveralls:report
+ - mvn clean cobertura:cobertura coveralls:report
pom.xml
@@ -36,6 +36,18 @@
36
<artifactId>coveralls-maven-plugin</artifactId>
37
<version>4.3.0</version>
38
</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>
51
</plugins>
52
</pluginManagement>
53
</build>
0 commit comments