mirror of
https://github.com/zxing/zxing.git
synced 2025-01-12 19:57:27 -08:00
Added Codecov.io coverage reporting
This commit is contained in:
parent
1992bd069e
commit
e061224d80
|
@ -1,4 +1,5 @@
|
|||
language: java
|
||||
before_install: sudo pip install codecov
|
||||
jdk:
|
||||
- oraclejdk7
|
||||
- openjdk7
|
||||
|
@ -8,3 +9,4 @@ cache:
|
|||
- $HOME/.m2
|
||||
git:
|
||||
depth: 1
|
||||
after_success: codecov
|
||||
|
|
|
@ -78,6 +78,7 @@ on StackOverflow](http://stackoverflow.com/questions/tagged/zxing).
|
|||
|
||||
[![Build Status](https://travis-ci.org/zxing/zxing.png?branch=master)](https://travis-ci.org/zxing/zxing)
|
||||
[![Coverity Status](https://scan.coverity.com/projects/1924/badge.svg)](https://scan.coverity.com/projects/1924)
|
||||
[![codecov.io](https://codecov.io/github/zxing/zxing/coverage.svg?branch=master)](https://codecov.io/github/zxing/zxing?branch=master)
|
||||
|
||||
QR code is trademarked by Denso Wave, inc. Thanks to Haase & Martin OHG for contributing the logo.
|
||||
|
||||
|
|
19
pom.xml
19
pom.xml
|
@ -141,6 +141,25 @@
|
|||
<groupId>org.codehaus.mojo</groupId>
|
||||
<artifactId>clirr-maven-plugin</artifactId>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.jacoco</groupId>
|
||||
<artifactId>jacoco-maven-plugin</artifactId>
|
||||
<version>0.5.8.201207111220</version>
|
||||
<executions>
|
||||
<execution>
|
||||
<goals>
|
||||
<goal>prepare-agent</goal>
|
||||
</goals>
|
||||
</execution>
|
||||
<execution>
|
||||
<id>report</id>
|
||||
<phase>test</phase>
|
||||
<goals>
|
||||
<goal>report</goal>
|
||||
</goals>
|
||||
</execution>
|
||||
</executions>
|
||||
</plugin>
|
||||
</plugins>
|
||||
<pluginManagement>
|
||||
<plugins>
|
||||
|
|
Loading…
Reference in a new issue