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 4aa9bbd commit 21da9b7Copy full SHA for 21da9b7
.travis.yml
@@ -4,5 +4,6 @@ install:
4
- mvn install -DskipTests -Dgpg.skip
5
script:
6
- mvn test -Dpgp.skip-true
7
+ - mvn cobertura:cobertura
8
after_success:
9
- bash <(curl -s https://codecov.io/bash)
pom.xml
@@ -137,7 +137,18 @@
137
<autoReleaseAfterClose>true</autoReleaseAfterClose>
138
</configuration>
139
</plugin>
140
-
+ <plugin>
141
+ <groupId>org.codehaus.mojo</groupId>
142
+ <artifactId>cobertura-maven-plugin</artifactId>
143
+ <version>2.7</version>
144
+ <configuration>
145
+ <formats>
146
+ <format>html</format>
147
+ <format>xml</format>
148
+ </formats>
149
+ <check />
150
+ </configuration>
151
+ </plugin>
152
</plugins>
153
</build>
154
0 commit comments