Use codecov for coverage visualisation
This commit is contained in:
@@ -22,6 +22,8 @@ matrix:
|
|||||||
build_command: mvn -B -q clean package -DskipTests=true
|
build_command: mvn -B -q clean package -DskipTests=true
|
||||||
branch_pattern: master
|
branch_pattern: master
|
||||||
- jdk: openjdk8
|
- jdk: openjdk8
|
||||||
|
after_success:
|
||||||
|
- bash <(curl -s https://codecov.io/bash)
|
||||||
- jdk: oraclejdk9
|
- jdk: oraclejdk9
|
||||||
before_install:
|
before_install:
|
||||||
# The OpenJDK9's CA bundle is outdated, so we're using the system's ones.
|
# The OpenJDK9's CA bundle is outdated, so we're using the system's ones.
|
||||||
|
|||||||
@@ -8,6 +8,7 @@ Airsonic
|
|||||||
[](https://scan.coverity.com/projects/airsonic)
|
[](https://scan.coverity.com/projects/airsonic)
|
||||||
[](https://lgtm.com/projects/g/airsonic/airsonic/context:javascript)
|
[](https://lgtm.com/projects/g/airsonic/airsonic/context:javascript)
|
||||||
[](https://lgtm.com/projects/g/airsonic/airsonic/context:java)
|
[](https://lgtm.com/projects/g/airsonic/airsonic/context:java)
|
||||||
|
[](https://codecov.io/gh/airsonic/airsonic)
|
||||||
|
|
||||||
What is Airsonic?
|
What is Airsonic?
|
||||||
-----------------
|
-----------------
|
||||||
|
|||||||
@@ -0,0 +1 @@
|
|||||||
|
comment: false
|
||||||
@@ -333,6 +333,25 @@
|
|||||||
</pluginManagement>
|
</pluginManagement>
|
||||||
|
|
||||||
<plugins>
|
<plugins>
|
||||||
|
<plugin>
|
||||||
|
<groupId>org.jacoco</groupId>
|
||||||
|
<artifactId>jacoco-maven-plugin</artifactId>
|
||||||
|
<version>0.8.5</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>
|
||||||
<plugin>
|
<plugin>
|
||||||
<groupId>org.apache.maven.plugins</groupId>
|
<groupId>org.apache.maven.plugins</groupId>
|
||||||
<artifactId>maven-compiler-plugin</artifactId>
|
<artifactId>maven-compiler-plugin</artifactId>
|
||||||
|
|||||||
Reference in New Issue
Block a user