Skip to content

Commit 7eb74cc

Browse files
committed
Travis Update
Signed-off-by: Joshua Gager <[email protected]>
1 parent 243738a commit 7eb74cc

File tree

2 files changed

+18
-1
lines changed

2 files changed

+18
-1
lines changed

.travis.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,9 @@ language: java
33
jdk:
44
- oraclejdk10
55

6-
install: mvn install -Dgpg.skip
6+
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

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -288,6 +288,18 @@
288288
<target>10</target>
289289
</configuration>
290290
</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>
291303
</plugins>
292304
</build>
293305

0 commit comments

Comments
 (0)