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 77d2ece commit 2927b2cCopy full SHA for 2927b2c
.travis.yml
@@ -2,3 +2,5 @@ language: java
2
sudo: false
3
jdk:
4
- oraclejdk8
5
+after_success:
6
+ - mvn clean cobertura:cobertura coveralls:report
pom.xml
@@ -96,6 +96,21 @@
96
</execution>
97
</executions>
98
</plugin>
99
+ <plugin>
100
+ <groupId>org.eluder.coveralls</groupId>
101
+ <artifactId>coveralls-maven-plugin</artifactId>
102
+ <version>4.3.0</version>
103
+ </plugin>
104
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
114
</plugins>
115
</build>
116
0 commit comments