Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKrzysztof Daniel2013-01-09 15:35:52 +0000
committerMike Rennie2013-01-09 15:36:31 +0000
commite1e23de88555fafa7de657e70e512435b69c035c (patch)
treec0952519e564bda6c21f3bf2c30f5ba51d6c5ccf
parent804aefbbfe3e2d2b79504ba2e3715b324dac4790 (diff)
downloadeclipse.jdt.debug-e1e23de88555fafa7de657e70e512435b69c035c.tar.gz
eclipse.jdt.debug-e1e23de88555fafa7de657e70e512435b69c035c.tar.xz
eclipse.jdt.debug-e1e23de88555fafa7de657e70e512435b69c035c.zip
Bug 385959 - org.eclipse.jdt.launching uses customBuildCallbacks
-rw-r--r--org.eclipse.jdt.launching/pom.xml46
1 files changed, 46 insertions, 0 deletions
diff --git a/org.eclipse.jdt.launching/pom.xml b/org.eclipse.jdt.launching/pom.xml
index c03bc722a..30b9eceac 100644
--- a/org.eclipse.jdt.launching/pom.xml
+++ b/org.eclipse.jdt.launching/pom.xml
@@ -22,4 +22,50 @@
<artifactId>org.eclipse.jdt.launching</artifactId>
<version>3.7.0-SNAPSHOT</version>
<packaging>eclipse-plugin</packaging>
+
+ <build>
+ <plugins>
+ <plugin>
+ <artifactId>maven-antrun-plugin</artifactId>
+ <version> 1.7 </version>
+ <executions>
+ <execution>
+ <id>compile-internal-jar</id>
+ <phase>compile</phase>
+ <configuration>
+ <target>
+ <property name="build.compiler" value="extJavac"/>
+ <ant antfile="customBuildCallbacks.xml" dir="." target="pre.@dot" />
+ </target>
+ </configuration>
+ <goals>
+ <goal>run</goal>
+ </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>
</project>

Back to the top