Skip to content

Commit 6216659

Browse files
committed
manage reporting plugin versions, added jacoco coverage to reporting
1 parent 9d1a50d commit 6216659

File tree

1 file changed

+14
-4
lines changed

1 file changed

+14
-4
lines changed

pom.xml

Lines changed: 14 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -92,6 +92,16 @@
9292
<artifactId>maven-javadoc-plugin</artifactId>
9393
<version>2.10.4</version>
9494
</plugin>
95+
<plugin>
96+
<groupId>org.jacoco</groupId>
97+
<artifactId>jacoco-maven-plugin</artifactId>
98+
<version>0.7.9</version>
99+
</plugin>
100+
<plugin>
101+
<groupId>org.apache.maven.plugins</groupId>
102+
<artifactId>maven-checkstyle-plugin</artifactId>
103+
<version>2.10</version>
104+
</plugin>
95105
<plugin>
96106
<groupId>org.apache.maven.plugins</groupId>
97107
<artifactId>maven-deploy-plugin</artifactId>
@@ -253,7 +263,6 @@
253263
<plugin>
254264
<groupId>org.jacoco</groupId>
255265
<artifactId>jacoco-maven-plugin</artifactId>
256-
<version>0.7.9</version>
257266
<executions>
258267
<execution>
259268
<goals>
@@ -277,7 +286,6 @@
277286
<plugin>
278287
<groupId>org.apache.maven.plugins</groupId>
279288
<artifactId>maven-project-info-reports-plugin</artifactId>
280-
<version>2.4</version>
281289
<configuration>
282290
<dependencyDetailsEnabled>false</dependencyDetailsEnabled>
283291
<dependencyLocationsEnabled>false</dependencyLocationsEnabled>
@@ -304,7 +312,6 @@
304312
<plugin>
305313
<groupId>org.apache.maven.plugins</groupId>
306314
<artifactId>maven-javadoc-plugin</artifactId>
307-
<version>2.9</version>
308315
<configuration>
309316
<author>true</author>
310317
<version>true</version>
@@ -319,7 +326,6 @@
319326
<plugin>
320327
<groupId>org.apache.maven.plugins</groupId>
321328
<artifactId>maven-checkstyle-plugin</artifactId>
322-
<version>2.10</version>
323329
<configuration>
324330
<configLocation>checkstyle.xml</configLocation>
325331
</configuration>
@@ -334,6 +340,10 @@
334340
</excludes>
335341
</configuration>
336342
</plugin>
343+
<plugin>
344+
<groupId>org.jacoco</groupId>
345+
<artifactId>jacoco-maven-plugin</artifactId>
346+
</plugin>
337347
</reportPlugins>
338348
</configuration>
339349
</plugin>

0 commit comments

Comments
 (0)