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 0f9ee69 commit f104adaCopy full SHA for f104ada
.travis.yml
@@ -1,3 +1,10 @@
1
language: java
2
jdk:
3
- oraclejdk8
4
+
5
+sudo: false # faster builds
6
7
+script: "mvn cobertura:cobertura"
8
9
+after_success:
10
+- bash <(curl -s https://codecov.io/bash)
pom.xml
@@ -51,6 +51,18 @@
51
<target>1.8</target>
52
</configuration>
53
<version>3.5.1</version>
54
+ </plugin>
55
+ <plugin>
56
+ <groupId>org.codehaus.mojo</groupId>
57
+ <artifactId>cobertura-maven-plugin</artifactId>
58
+ <version>2.7</version>
59
+ <configuration>
60
+ <formats>
61
+ <format>html</format>
62
+ <format>xml</format>
63
+ </formats>
64
+ <check />
65
+ </configuration>
66
</plugin>
67
</plugins>
68
</build>
0 commit comments