We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d3d4d73 commit d286290Copy full SHA for d286290
.circleci/config.yml
@@ -38,5 +38,5 @@ jobs:
38
key: v1-dependencies-{{ checksum "pom.xml" }}
39
40
# run tests!
41
- - run: mvn test coveralls:report -Dskip.yarn
+ - run: mvn test jacoco:report coveralls:report -Dskip.yarn
42
pom.xml
@@ -164,6 +164,19 @@
164
</execution>
165
</executions>
166
</plugin>
167
+ <plugin>
168
+ <groupId>org.jacoco</groupId>
169
+ <artifactId>jacoco-maven-plugin</artifactId>
170
+ <version>0.81</version>
171
+ <executions>
172
+ <execution>
173
+ <id>prepare-agent</id>
174
+ <goals>
175
+ <goal>prepare-agent</goal>
176
+ </goals>
177
+ </execution>
178
+ </executions>
179
+ </plugin>
180
<plugin>
181
<groupId>org.eluder.coveralls</groupId>
182
<artifactId>coveralls-maven-plugin</artifactId>
0 commit comments