Skip to content

Commit d286290

Browse files
committed
add jacoco
1 parent d3d4d73 commit d286290

File tree

2 files changed

+14
-1
lines changed

2 files changed

+14
-1
lines changed

.circleci/config.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -38,5 +38,5 @@ jobs:
3838
key: v1-dependencies-{{ checksum "pom.xml" }}
3939

4040
# run tests!
41-
- run: mvn test coveralls:report -Dskip.yarn
41+
- run: mvn test jacoco:report coveralls:report -Dskip.yarn
4242

pom.xml

+13
Original file line numberDiff line numberDiff line change
@@ -164,6 +164,19 @@
164164
</execution>
165165
</executions>
166166
</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>
167180
<plugin>
168181
<groupId>org.eluder.coveralls</groupId>
169182
<artifactId>coveralls-maven-plugin</artifactId>

0 commit comments

Comments
 (0)