diff options
author | Matthias Sohn <matthias.sohn@sap.com> | 2015-10-18 18:28:04 +0200 |
---|---|---|
committer | Matthias Sohn <matthias.sohn@sap.com> | 2015-10-18 23:23:03 +0200 |
commit | e78b0921997c0ae3d48b9f73eca21b4ab9579884 (patch) | |
tree | 897b9f52fe78212961eb159c2a724b710b5d1ed2 /pom.xml | |
parent | 504e23b7a5fb78b2b267737f5b7ada35358701c9 (diff) | |
download | jgit-e78b0921997c0ae3d48b9f73eca21b4ab9579884.tar.gz jgit-e78b0921997c0ae3d48b9f73eca21b4ab9579884.zip |
Silence Maven complaining about unset versions of reporting plugins
Since we use the reporting plugins only in the parent pom.xml there's no
point in using the new pluginManagement tag in the reporting section
which was introduced to fix
https://issues.apache.org/jira/browse/MSITE-443
Change-Id: I750ca3765e95afb06609a362fb3354afc3b66b90
Signed-off-by: Matthias Sohn <matthias.sohn@sap.com>
Diffstat (limited to 'pom.xml')
-rw-r--r-- | pom.xml | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -519,14 +519,17 @@ <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-jxr-plugin</artifactId> + <version>2.5</version> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>findbugs-maven-plugin</artifactId> + <version>3.0.0</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-report-plugin</artifactId> + <version>2.18.1</version> <configuration> <aggregate>true</aggregate> <alwaysGenerateSurefireReport>false</alwaysGenerateSurefireReport> |