mirror of
https://github.com/zxing/zxing.git
synced 2025-03-05 20:48:51 -08:00
Added Codecov.io coverage reporting
This commit is contained in:
parent
1992bd069e
commit
e061224d80
|
@ -1,4 +1,5 @@
|
||||||
language: java
|
language: java
|
||||||
|
before_install: sudo pip install codecov
|
||||||
jdk:
|
jdk:
|
||||||
- oraclejdk7
|
- oraclejdk7
|
||||||
- openjdk7
|
- openjdk7
|
||||||
|
@ -8,3 +9,4 @@ cache:
|
||||||
- $HOME/.m2
|
- $HOME/.m2
|
||||||
git:
|
git:
|
||||||
depth: 1
|
depth: 1
|
||||||
|
after_success: codecov
|
||||||
|
|
|
@ -78,6 +78,7 @@ on StackOverflow](http://stackoverflow.com/questions/tagged/zxing).
|
||||||
|
|
||||||
[](https://travis-ci.org/zxing/zxing)
|
[](https://travis-ci.org/zxing/zxing)
|
||||||
[](https://scan.coverity.com/projects/1924)
|
[](https://scan.coverity.com/projects/1924)
|
||||||
|
[](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.
|
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>
|
<groupId>org.codehaus.mojo</groupId>
|
||||||
<artifactId>clirr-maven-plugin</artifactId>
|
<artifactId>clirr-maven-plugin</artifactId>
|
||||||
</plugin>
|
</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>
|
</plugins>
|
||||||
<pluginManagement>
|
<pluginManagement>
|
||||||
<plugins>
|
<plugins>
|
||||||
|
|
Loading…
Reference in a new issue