We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 64a015d commit 8eb92c9Copy full SHA for 8eb92c9
2 files changed
.travis.yml
@@ -2,3 +2,6 @@ install: mvn install -DskipTests=true -Dgpg.skip=true
2
jdk:
3
- oraclejdk8
4
language: java
5
+after_success:
6
+ - mvn clean test jacoco:report coveralls:report
7
+
pom.xml
@@ -96,6 +96,19 @@
96
<artifactId>coveralls-maven-plugin</artifactId>
97
<version>4.1.0</version>
98
</plugin>
99
+ <plugin>
100
+ <groupId>org.jacoco</groupId>
101
+ <artifactId>jacoco-maven-plugin</artifactId>
102
+ <version>0.7.5.201505241946</version>
103
+ <executions>
104
+ <execution>
105
+ <id>prepare-agent</id>
106
+ <goals>
107
+ <goal>prepare-agent</goal>
108
+ </goals>
109
+ </execution>
110
+ </executions>
111
+ </plugin>
112
<plugin>
113
<groupId>org.apache.maven.plugins</groupId>
114
<artifactId>maven-gpg-plugin</artifactId>
0 commit comments