Skip to content

Commit 64d0952

Browse files
author
Mario Bodemann
committed
Replacing cobertura with jacoco
1 parent 06bb55e commit 64d0952

2 files changed

Lines changed: 11 additions & 1 deletion

File tree

.travis.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,12 @@ jdk:
44
- oraclejdk7
55
- oraclejdk8
66

7+
script:
8+
- mvn jacoco:prepare-agent
9+
- mvn test
10+
711
after_success:
8-
- mvn cobertura:cobertura
12+
- mvn jacoco:report
913
- .buildscript/codecov.sh
1014
- .buildscript/deploy_snapshot.sh
1115
- .buildscript/integration_tests.sh

pom.xml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -191,6 +191,12 @@
191191
<artifactId>maven-release-plugin</artifactId>
192192
<version>2.5</version>
193193
</plugin>
194+
195+
<plugin>
196+
<groupId>org.jacoco</groupId>
197+
<artifactId>jacoco-maven-plugin</artifactId>
198+
<version>0.7.9</version>
199+
</plugin>
194200
</plugins>
195201
</build>
196202
</project>

0 commit comments

Comments
 (0)