Skip to content

Commit d89f9d3

Browse files
committed
codecov
1 parent 0baaa24 commit d89f9d3

File tree

2 files changed

+17
-3
lines changed

2 files changed

+17
-3
lines changed

.travis.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
language: java
22
jdk:
33
- openjdk8
4-
before_install:
5-
- pip install --user codecov
4+
sudo: false
5+
script: "mvn cobertura:cobertura"
66
after_success:
7-
- codecov
7+
- bash <(curl -s https://codecov.io/bash)

pom.xml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -223,5 +223,19 @@ limitations under the License.
223223
</plugin>
224224
</plugins>
225225
</pluginManagement>
226+
<plugins>
227+
<plugin>
228+
<groupId>org.codehaus.mojo</groupId>
229+
<artifactId>cobertura-maven-plugin</artifactId>
230+
<version>2.7</version>
231+
<configuration>
232+
<formats>
233+
<format>html</format>
234+
<format>xml</format>
235+
</formats>
236+
<check />
237+
</configuration>
238+
</plugin>
239+
</plugins>
226240
</build>
227241
</project>

0 commit comments

Comments
 (0)