Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorShawn Pearce2011-11-29 02:51:31 +0000
committerCode Review2011-11-29 02:51:31 +0000
commit47ef4db6bbb7a8c87ea67cec18f8f85b35d41a0c (patch)
tree30e6daaad4b02a678fad34f53e821b6c1440ac0f
parent5e5640ff6273bb2beefd1704c027ac5f25158cf8 (diff)
parent8375d17c00cbc31b3fb75fd3f96ed5c6d4d0b546 (diff)
downloadjgit-47ef4db6bbb7a8c87ea67cec18f8f85b35d41a0c.tar.gz
jgit-47ef4db6bbb7a8c87ea67cec18f8f85b35d41a0c.tar.xz
jgit-47ef4db6bbb7a8c87ea67cec18f8f85b35d41a0c.zip
Merge "Update maven plugin versions"
-rw-r--r--org.eclipse.jgit.packaging/pom.xml2
-rw-r--r--pom.xml22
2 files changed, 12 insertions, 12 deletions
diff --git a/org.eclipse.jgit.packaging/pom.xml b/org.eclipse.jgit.packaging/pom.xml
index 0efe747b59..742ef851fe 100644
--- a/org.eclipse.jgit.packaging/pom.xml
+++ b/org.eclipse.jgit.packaging/pom.xml
@@ -118,7 +118,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-resources-plugin</artifactId>
- <version>2.4.1</version>
+ <version>2.5</version>
<configuration>
<encoding>ISO-8859-1</encoding>
</configuration>
diff --git a/pom.xml b/pom.xml
index ade5c6a433..87953f7965 100644
--- a/pom.xml
+++ b/pom.xml
@@ -160,48 +160,48 @@
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
- <version>2.0.2</version>
+ <version>2.3.2</version>
</plugin>
<plugin>
<artifactId>maven-clean-plugin</artifactId>
- <version>2.2</version>
+ <version>2.4.1</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-shade-plugin</artifactId>
- <version>1.2</version>
+ <version>1.5</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-antrun-plugin</artifactId>
- <version>1.3</version>
+ <version>1.7</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-dependency-plugin</artifactId>
- <version>2.1</version>
+ <version>2.3</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
- <version>2.1.1</version>
+ <version>2.1.2</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
- <version>2.7</version>
+ <version>2.8</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
- <version>2.4.2</version>
+ <version>2.9</version>
</plugin>
<plugin>
@@ -230,7 +230,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-pmd-plugin</artifactId>
- <version>2.5</version>
+ <version>2.6</version>
<configuration>
<sourceEncoding>utf-8</sourceEncoding>
<minimumTokens>100</minimumTokens>
@@ -267,12 +267,12 @@
<id>translate-qualifier</id>
<phase>generate-resources</phase>
<configuration>
- <tasks unless="${translate-qualifier}">
+ <target if="${translate-qualifier}">
<copy file="META-INF/MANIFEST.MF" tofile="${bundle-manifest}" overwrite="true"/>
<replace file="${bundle-manifest}">
<replacefilter token=".qualifier" value=".${maven.build.timestamp}"/>
</replace>
- </tasks>
+ </target>
</configuration>
<goals>
<goal>run</goal>

Back to the top