tom

Added code-coverage plugin to the top-level pom.

Showing 1 changed file with 21 additions and 1 deletions
...@@ -256,6 +256,27 @@ ...@@ -256,6 +256,27 @@
256 </plugin> 256 </plugin>
257 257
258 <plugin> 258 <plugin>
259 + <groupId>org.jacoco</groupId>
260 + <artifactId>jacoco-maven-plugin</artifactId>
261 + <version>0.7.1.201405082137</version>
262 + <executions>
263 + <execution>
264 + <id>default-prepare-agent</id>
265 + <goals>
266 + <goal>prepare-agent</goal>
267 + </goals>
268 + </execution>
269 + <execution>
270 + <id>default-report</id>
271 + <phase>prepare-package</phase>
272 + <goals>
273 + <goal>report</goal>
274 + </goals>
275 + </execution>
276 + </executions>
277 + </plugin>
278 +
279 + <plugin>
259 <groupId>org.apache.maven.plugins</groupId> 280 <groupId>org.apache.maven.plugins</groupId>
260 <artifactId>maven-javadoc-plugin</artifactId> 281 <artifactId>maven-javadoc-plugin</artifactId>
261 <version>2.9.1</version> 282 <version>2.9.1</version>
...@@ -301,7 +322,6 @@ ...@@ -301,7 +322,6 @@
301 </plugins> 322 </plugins>
302 </build> 323 </build>
303 324
304 -
305 <reporting> 325 <reporting>
306 <plugins> 326 <plugins>
307 <plugin> 327 <plugin>
......