diff options
| author | Krzysztof Daniel | 2013-01-11 18:30:46 +0000 |
|---|---|---|
| committer | Mike Rennie | 2013-01-11 18:30:46 +0000 |
| commit | d326a7cdb7b46599e21437f809ea8d8b6b349695 (patch) | |
| tree | c739757a319581736afe29ff63597d7e7836fecb | |
| parent | 9015302ab3f72f22ce4b6d1c8b8b0b3331363be2 (diff) | |
| download | eclipse.jdt.debug-d326a7cdb7b46599e21437f809ea8d8b6b349695.tar.gz eclipse.jdt.debug-d326a7cdb7b46599e21437f809ea8d8b6b349695.tar.xz eclipse.jdt.debug-d326a7cdb7b46599e21437f809ea8d8b6b349695.zip | |
Bug 385959 - org.eclipse.jdt.launching uses customBuildCallbacksv20130111-183046M20130116-1800M20130116-1715M20130116-1200M20130116-1030M20130116-1000
| -rw-r--r-- | org.eclipse.jdt.launching/pom.xml | 96 |
1 files changed, 71 insertions, 25 deletions
diff --git a/org.eclipse.jdt.launching/pom.xml b/org.eclipse.jdt.launching/pom.xml index bac245f3a..5b48d4dee 100644 --- a/org.eclipse.jdt.launching/pom.xml +++ b/org.eclipse.jdt.launching/pom.xml @@ -1,25 +1,71 @@ -<?xml version="1.0" encoding="UTF-8"?> -<!-- - Copyright (c) 2012 Eclipse Foundation. - All rights reserved. This program and the accompanying materials - are made available under the terms of the Eclipse Distribution License v1.0 - which accompanies this distribution, and is available at - http://www.eclipse.org/org/documents/edl-v10.php - - Contributors: - Igor Fedorenko - initial implementation ---> - -<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0" - xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> - <modelVersion>4.0.0</modelVersion> - <parent> - <artifactId>eclipse.jdt.debug</artifactId> - <groupId>eclipse.jdt.debug</groupId> - <version>3.8.0-SNAPSHOT</version> - </parent> - <groupId>eclipse.jdt.debug</groupId> - <artifactId>org.eclipse.jdt.launching</artifactId> - <version>3.6.101-SNAPSHOT</version> - <packaging>eclipse-plugin</packaging> -</project> +<?xml version="1.0" encoding="UTF-8"?>
+<!--
+ Copyright (c) 2012 Eclipse Foundation.
+ All rights reserved. This program and the accompanying materials
+ are made available under the terms of the Eclipse Distribution License v1.0
+ which accompanies this distribution, and is available at
+ http://www.eclipse.org/org/documents/edl-v10.php
+
+ Contributors:
+ Igor Fedorenko - initial implementation
+-->
+
+<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
+ <modelVersion>4.0.0</modelVersion>
+ <parent>
+ <artifactId>eclipse.jdt.debug</artifactId>
+ <groupId>eclipse.jdt.debug</groupId>
+ <version>3.8.0-SNAPSHOT</version>
+ </parent>
+ <groupId>eclipse.jdt.debug</groupId>
+ <artifactId>org.eclipse.jdt.launching</artifactId>
+ <version>3.6.101-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>
|
