Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlexander Kurtakov2015-01-28 14:33:14 +0000
committerAlexander Kurtakov2015-01-28 14:33:14 +0000
commit77ffdb08107fef158d543fc08417be84c26fb31a (patch)
tree544ffb6f282fa32e0b34f90cbd236249df8a7353
parent1faf4d92b3e9c1a384c0650fbcc2a50c7bbc3176 (diff)
downloadeclipse.platform.team-77ffdb08107fef158d543fc08417be84c26fb31a.tar.gz
eclipse.platform.team-77ffdb08107fef158d543fc08417be84c26fb31a.tar.xz
eclipse.platform.team-77ffdb08107fef158d543fc08417be84c26fb31a.zip
Bug 458642 - Update maven antrun plugin configuration.
As continuation of bug#458043. Don't define maven-antrun-plugin version but rely on parent's pluginManagement version. Drop the unneeded additional dependencies for antrun plugin. Change-Id: I5c86cacdf0a573744bbe3b803e01dbf29943030c Signed-off-by: Alexander Kurtakov <akurtako@redhat.com>
-rw-r--r--bundles/org.eclipse.core.net/fragments/org.eclipse.core.net.linux.x86/pom.xml23
-rw-r--r--bundles/org.eclipse.core.net/fragments/org.eclipse.core.net.linux.x86_64/pom.xml23
2 files changed, 0 insertions, 46 deletions
diff --git a/bundles/org.eclipse.core.net/fragments/org.eclipse.core.net.linux.x86/pom.xml b/bundles/org.eclipse.core.net/fragments/org.eclipse.core.net.linux.x86/pom.xml
index 49f730c14..bcbc83f14 100644
--- a/bundles/org.eclipse.core.net/fragments/org.eclipse.core.net.linux.x86/pom.xml
+++ b/bundles/org.eclipse.core.net/fragments/org.eclipse.core.net.linux.x86/pom.xml
@@ -54,7 +54,6 @@
<plugins>
<plugin>
<artifactId>maven-antrun-plugin</artifactId>
- <version>1.7</version>
<executions>
<execution>
<id>natives</id>
@@ -74,28 +73,6 @@
</goals>
</execution>
</executions>
- <dependencies>
- <dependency>
- <groupId>bsf</groupId>
- <artifactId>bsf</artifactId>
- <version>2.4.0</version>
- </dependency>
- <dependency>
- <groupId>rhino</groupId>
- <artifactId>js</artifactId>
- <version>1.7R2</version>
- </dependency>
- <dependency>
- <groupId>org.apache.ant</groupId>
- <artifactId>ant-apache-bsf</artifactId>
- <version>1.8.3</version>
- </dependency>
- <dependency>
- <groupId>org.apache.ant</groupId>
- <artifactId>ant-nodeps</artifactId>
- <version>1.8.1</version>
- </dependency>
- </dependencies>
</plugin>
</plugins>
</build>
diff --git a/bundles/org.eclipse.core.net/fragments/org.eclipse.core.net.linux.x86_64/pom.xml b/bundles/org.eclipse.core.net/fragments/org.eclipse.core.net.linux.x86_64/pom.xml
index 37414e99a..02fcf2721 100644
--- a/bundles/org.eclipse.core.net/fragments/org.eclipse.core.net.linux.x86_64/pom.xml
+++ b/bundles/org.eclipse.core.net/fragments/org.eclipse.core.net.linux.x86_64/pom.xml
@@ -55,7 +55,6 @@
<plugins>
<plugin>
<artifactId>maven-antrun-plugin</artifactId>
- <version>1.7</version>
<executions>
<execution>
<id>natives</id>
@@ -75,28 +74,6 @@
</goals>
</execution>
</executions>
- <dependencies>
- <dependency>
- <groupId>bsf</groupId>
- <artifactId>bsf</artifactId>
- <version>2.4.0</version>
- </dependency>
- <dependency>
- <groupId>rhino</groupId>
- <artifactId>js</artifactId>
- <version>1.7R2</version>
- </dependency>
- <dependency>
- <groupId>org.apache.ant</groupId>
- <artifactId>ant-apache-bsf</artifactId>
- <version>1.8.3</version>
- </dependency>
- <dependency>
- <groupId>org.apache.ant</groupId>
- <artifactId>ant-nodeps</artifactId>
- <version>1.8.1</version>
- </dependency>
- </dependencies>
</plugin>
</plugins>
</build>

Back to the top