Skip to content

Commit 2927b2c

Browse files
committed
add cobertura/coveralls maven plugins
1 parent 77d2ece commit 2927b2c

File tree

2 files changed

+17
-0
lines changed

2 files changed

+17
-0
lines changed

.travis.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,3 +2,5 @@ language: java
22
sudo: false
33
jdk:
44
- oraclejdk8
5+
after_success:
6+
- mvn clean cobertura:cobertura coveralls:report

pom.xml

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -96,6 +96,21 @@
9696
</execution>
9797
</executions>
9898
</plugin>
99+
<plugin>
100+
<groupId>org.eluder.coveralls</groupId>
101+
<artifactId>coveralls-maven-plugin</artifactId>
102+
<version>4.3.0</version>
103+
</plugin>
104+
<plugin>
105+
<groupId>org.codehaus.mojo</groupId>
106+
<artifactId>cobertura-maven-plugin</artifactId>
107+
<version>2.7</version>
108+
<configuration>
109+
<format>xml</format>
110+
<maxmem>256m</maxmem>
111+
<aggregate>true</aggregate>
112+
</configuration>
113+
</plugin>
99114
</plugins>
100115
</build>
101116

0 commit comments

Comments
 (0)