1
0
mirror of https://github.com/SAP/jenkins-library.git synced 2024-12-12 10:55:20 +02:00

add coveralls maven config

This commit is contained in:
Christopher Fenner 2018-01-31 09:25:59 +01:00
parent 3821b96b3f
commit 6700e570a5

18
pom.xml
View File

@ -202,6 +202,24 @@
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.eluder.coveralls</groupId>
<artifactId>coveralls-maven-plugin</artifactId>
<version>4.3.0</version>
<configuration>
<repoToken>$COVERALLS_REPO_TOKEN</repoToken>
</configuration>
<executions>
<execution>
<id>post-unit-test</id>
<goals><goal>report</goal></goals>
</execution>
<execution>
<id>post-integration-test</id>
<goals><goal>report</goal></goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>