mirror of
https://github.com/getrebuild/rebuild.git
synced 2025-02-22 05:14:38 +08:00
cobertura
This commit is contained in:
parent
9f701223fa
commit
c4bcabd6a6
2 changed files with 19 additions and 2 deletions
|
@ -3,7 +3,6 @@ dist: trusty
|
||||||
language: java
|
language: java
|
||||||
jdk:
|
jdk:
|
||||||
- oraclejdk8
|
- oraclejdk8
|
||||||
# - oraclejdk9
|
|
||||||
# - oraclejdk11
|
# - oraclejdk11
|
||||||
script: mvn cobertura:cobertura -DskipTests=false
|
script: mvn cobertura:cobertura -DskipTests=false
|
||||||
|
|
||||||
|
|
20
pom.xml
20
pom.xml
|
@ -62,6 +62,24 @@
|
||||||
<workingDirectory>.deploy</workingDirectory>
|
<workingDirectory>.deploy</workingDirectory>
|
||||||
</configuration>
|
</configuration>
|
||||||
</plugin>
|
</plugin>
|
||||||
|
<!-- Codecov : `mvn cobertura:cobertura -DskipTests=false -Drbpass=PASSKEY` & `bash <(curl -s https://codecov.io/bash) -t TOKEN` -->
|
||||||
|
<plugin>
|
||||||
|
<groupId>org.codehaus.mojo</groupId>
|
||||||
|
<artifactId>cobertura-maven-plugin</artifactId>
|
||||||
|
<version>2.7</version>
|
||||||
|
<configuration>
|
||||||
|
<instrumentation>
|
||||||
|
<excludes>
|
||||||
|
<exclude>com/rebuild/**/*Test.class</exclude>
|
||||||
|
</excludes>
|
||||||
|
</instrumentation>
|
||||||
|
<formats>
|
||||||
|
<format>html</format>
|
||||||
|
<format>xml</format>
|
||||||
|
</formats>
|
||||||
|
<check />
|
||||||
|
</configuration>
|
||||||
|
</plugin>
|
||||||
</plugins>
|
</plugins>
|
||||||
<resources>
|
<resources>
|
||||||
<resource>
|
<resource>
|
||||||
|
@ -311,7 +329,7 @@
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>junit</groupId>
|
<groupId>junit</groupId>
|
||||||
<artifactId>junit</artifactId>
|
<artifactId>junit</artifactId>
|
||||||
<version>4.13</version>
|
<version>4.13.1</version>
|
||||||
<scope>test</scope>
|
<scope>test</scope>
|
||||||
</dependency>
|
</dependency>
|
||||||
<dependency>
|
<dependency>
|
||||||
|
|
Loading…
Reference in a new issue