Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlexander Kurtakov2015-03-25 10:22:29 +0000
committerAlexander Kurtakov2015-03-25 10:22:29 +0000
commit7163191ad837ee4dbd99301bb257966d1ab9ea7a (patch)
treeacb38de1f144607b65374ce4860c9cb37e332f1e /org.eclipse.jdt.compiler.tool
parentaa1251a9bb09d2814faa35f8263b76de31ef315e (diff)
downloadeclipse.jdt.core-7163191ad837ee4dbd99301bb257966d1ab9ea7a.tar.gz
eclipse.jdt.core-7163191ad837ee4dbd99301bb257966d1ab9ea7a.tar.xz
eclipse.jdt.core-7163191ad837ee4dbd99301bb257966d1ab9ea7a.zip
Bug 463070 - Update maven antrun plugin configuration
Don't define maven-antrun-plugin version but rely on parent's pluginManagement version. Drop the unneeded additional dependencies for antrun plugin - they are not used at all. Change-Id: I7dbffca7b48fd08c88afa1f1eef7b1ae2b221f78 Signed-off-by: Alexander Kurtakov <akurtako@redhat.com>
Diffstat (limited to 'org.eclipse.jdt.compiler.tool')
-rw-r--r--org.eclipse.jdt.compiler.tool/pom.xml23
1 files changed, 0 insertions, 23 deletions
diff --git a/org.eclipse.jdt.compiler.tool/pom.xml b/org.eclipse.jdt.compiler.tool/pom.xml
index 898a6379c7..3cbe406c8d 100644
--- a/org.eclipse.jdt.compiler.tool/pom.xml
+++ b/org.eclipse.jdt.compiler.tool/pom.xml
@@ -25,7 +25,6 @@
<plugins>
<plugin>
<artifactId>maven-antrun-plugin</artifactId>
- <version>1.7</version>
<configuration>
<archive>
<addMavenDescriptor>false</addMavenDescriptor>
@@ -78,28 +77,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