CI : Added Jacoco

This commit is contained in:
Klemek
2019-01-20 17:19:33 +01:00
parent a76c658107
commit 61ae98789b
2 changed files with 15 additions and 0 deletions
+1
View File
@@ -1,6 +1,7 @@
# BetterLists
[![Maven Central](https://maven-badges.herokuapp.com/maven-central/com.github.klemek/betterlists/badge.svg)](https://maven-badges.herokuapp.com/maven-central/com.github.klemek/betterlists)
[![Build Status](https://travis-ci.org/Klemek/BetterLists.svg?branch=master)](https://travis-ci.org/Klemek/BetterLists)
[![Coverage Status](https://coveralls.io/repos/github/Klemek/BetterLists/badge.svg?branch=master)](https://coveralls.io/github/Klemek/BetterLists?branch=master)
An extension of the java.util.List interface which include some of the C# LINQ useful functions.
+14
View File
@@ -158,6 +158,20 @@
</execution>
</executions>
</plugin>
<!-- Coverage -->
<plugin>
<groupId>org.jacoco</groupId>
<artifactId>jacoco-maven-plugin</artifactId>
<version>0.7.6.201602180812</version>
<executions>
<execution>
<id>prepare-agent</id>
<goals>
<goal>prepare-agent</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.eluder.coveralls</groupId>
<artifactId>coveralls-maven-plugin</artifactId>