We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fea4fa9 commit 4692697Copy full SHA for 4692697
.travis.yml
@@ -7,7 +7,7 @@ jdk:
7
8
install: true
9
10
-script: mvn test
+script: mvn clean test jacoco:report
11
12
after_success:
13
- mvn coveralls:report
pom.xml
@@ -123,6 +123,19 @@
123
</execution>
124
</executions>
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>
139
<plugin>
140
<groupId>org.eluder.coveralls</groupId>
141
<artifactId>coveralls-maven-plugin</artifactId>
0 commit comments