Skip to content

Commit c0daf4f

Browse files
committed
add coveralls
1 parent a20d11a commit c0daf4f

File tree

2 files changed

+21
-0
lines changed

2 files changed

+21
-0
lines changed

.travis.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,3 +13,6 @@ sudo: false
1313
install: true
1414

1515
script: mvn -B -V package javadoc:javadoc test
16+
17+
after_success:
18+
- mvn clean test jacoco:report coveralls:report

pom.xml

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -118,6 +118,24 @@
118118
</execution>
119119
</executions>
120120
</plugin>
121+
<plugin>
122+
<groupId>org.eluder.coveralls</groupId>
123+
<artifactId>coveralls-maven-plugin</artifactId>
124+
<version>3.0.1</version>
125+
</plugin>
126+
<plugin>
127+
<groupId>org.jacoco</groupId>
128+
<artifactId>jacoco-maven-plugin</artifactId>
129+
<version>0.7.2.201409121644</version>
130+
<executions>
131+
<execution>
132+
<id>prepare-agent</id>
133+
<goals>
134+
<goal>prepare-agent</goal>
135+
</goals>
136+
</execution>
137+
</executions>
138+
</plugin>
121139
</plugins>
122140
</build>
123141
<dependencies>

0 commit comments

Comments
 (0)