Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlexander Kurtakov2011-04-14 08:20:42 +0000
committerAndrew Overholt2011-04-14 15:15:11 +0000
commit2113d869b0111c59a72453ab63e6e9901cf77c41 (patch)
tree3fb75786c35a3517419ef817547aa4c3d87e0cc8
parenta2b05a5633f97de12247311ad7143e89984f1f67 (diff)
downloadorg.eclipse.linuxtools-2113d869b0111c59a72453ab63e6e9901cf77c41.tar.gz
org.eclipse.linuxtools-2113d869b0111c59a72453ab63e6e9901cf77c41.tar.xz
org.eclipse.linuxtools-2113d869b0111c59a72453ab63e6e9901cf77c41.zip
Update dependencies.
* Drop codehaus snapshot repository and depend on released findbugs plugin. * Update to latest antrun and resourses plugins.
-rw-r--r--pom.xml16
1 files changed, 3 insertions, 13 deletions
diff --git a/pom.xml b/pom.xml
index d430d8de51..2af7d1f7c8 100644
--- a/pom.xml
+++ b/pom.xml
@@ -128,16 +128,6 @@
</repository>
</repositories>
- <pluginRepositories>
- <pluginRepository>
- <!-- need maven-findbugs-2.3.2-SNAPSHOT, see
- http://jira.codehaus.org/browse/MFINDBUGS-122
- remove this when this version is released -->
- <id>codehaus.snapshots</id>
- <url>http://snapshots.repository.codehaus.org/</url>
- </pluginRepository>
- </pluginRepositories>
-
<build>
<plugins>
<plugin>
@@ -217,7 +207,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-resources-plugin</artifactId>
- <version>2.4.1</version>
+ <version>2.4.3</version>
<configuration>
<encoding>ISO-8859-1</encoding>
</configuration>
@@ -225,12 +215,12 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-antrun-plugin</artifactId>
- <version>1.3</version>
+ <version>1.6</version>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>findbugs-maven-plugin</artifactId>
- <version>2.3.2-SNAPSHOT</version>
+ <version>2.3.2</version>
<configuration>
<findbugsXmlOutput>true</findbugsXmlOutput>
<failOnError>false</failOnError>

Back to the top