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 243738a commit 7eb74ccCopy full SHA for 7eb74cc
.travis.yml
@@ -3,4 +3,9 @@ language: java
3
jdk:
4
- oraclejdk10
5
6
-install: mvn install -Dgpg.skip
+script: "mvn cobertura:cobertura"
7
+
8
+after_success:
9
+- bash <(curl -s https://codecov.io/bash)
10
11
+install: mvn install -Dgpg.skip
pom.xml
@@ -288,6 +288,18 @@
288
<target>10</target>
289
</configuration>
290
</plugin>
291
+ <plugin>
292
+ <groupId>org.codehaus.mojo</groupId>
293
+ <artifactId>cobertura-maven-plugin</artifactId>
294
+ <version>2.7</version>
295
+ <configuration>
296
+ <formats>
297
+ <format>html</format>
298
+ <format>xml</format>
299
+ </formats>
300
+ <check />
301
+ </configuration>
302
+ </plugin>
303
</plugins>
304
</build>
305
0 commit comments