Skip to content

Commit e4b206b

Browse files
committed
added jacocover
1 parent a094051 commit e4b206b

1 file changed

Lines changed: 22 additions & 0 deletions

File tree

pom.xml

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -132,6 +132,28 @@
132132
</webApp>
133133
</configuration>
134134
</plugin>
135+
<!-- CODE COVERAGE -->
136+
<plugin>
137+
<groupId>org.jacoco</groupId>
138+
<artifactId>jacoco-maven-plugin</artifactId>
139+
<version>0.7.2.201409121644</version>
140+
<executions>
141+
<execution>
142+
<id>jacoco-initialize</id>
143+
<phase>process-resources</phase>
144+
<goals>
145+
<goal>prepare-agent</goal>
146+
</goals>
147+
</execution>
148+
<execution>
149+
<id>jacoco-site</id>
150+
<phase>post-integration-test</phase>
151+
<goals>
152+
<goal>report</goal>
153+
</goals>
154+
</execution>
155+
</executions>
156+
</plugin>
135157
</plugins>
136158
</build>
137159
</project>

0 commit comments

Comments
 (0)