Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatthias Sohn2010-04-30 20:16:18 +0000
committerMatthias Sohn2010-04-30 20:16:18 +0000
commit02400552a05d13c3c318311b8af6fb4eef945d0e (patch)
tree8c6ccefe4c714331f302d95a443b895d3fb021cf /pom.xml
parent23583e59bbd707d4f10e15af7c1c4f2874e13685 (diff)
downloadjgit-02400552a05d13c3c318311b8af6fb4eef945d0e.tar.gz
jgit-02400552a05d13c3c318311b8af6fb4eef945d0e.tar.xz
jgit-02400552a05d13c3c318311b8af6fb4eef945d0e.zip
Lock down maven plugin versions
This prevents surprises by implicit updates to newer versions. Change-Id: I06508036d468fa5299ea774e26a73312bb286ec2 Signed-off-by: Matthias Sohn <matthias.sohn@sap.com>
Diffstat (limited to 'pom.xml')
-rw-r--r--pom.xml15
1 files changed, 14 insertions, 1 deletions
diff --git a/pom.xml b/pom.xml
index 2e57e6f444..9e4e2812b6 100644
--- a/pom.xml
+++ b/pom.xml
@@ -142,7 +142,8 @@
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-jar-plugin</artifactId>
+ <artifactId>maven-jar-plugin</artifactId>
+ <version>2.3</version>
<configuration>
<archive>
<manifestEntries>
@@ -185,6 +186,18 @@
</plugin>
<plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-source-plugin</artifactId>
+ <version>2.1.1</version>
+ </plugin>
+
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-javadoc-plugin</artifactId>
+ <version>2.6.1</version>
+ </plugin>
+
+ <plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>build-helper-maven-plugin</artifactId>
<version>1.3</version>

Back to the top