72 lines
2.6 KiB
Diff
72 lines
2.6 KiB
Diff
|
--- rt.equinox.framework/bundles/org.eclipse.osgi.services/pom.xml.bak 2012-07-25 17:42:07.000000000 +0200
|
||
|
+++ rt.equinox.framework/bundles/org.eclipse.osgi.services/pom.xml 2012-07-30 12:05:54.525785334 +0200
|
||
|
@@ -42,6 +42,68 @@
|
||
|
</dependency-resolution>
|
||
|
</configuration>
|
||
|
</plugin>
|
||
|
+ <plugin>
|
||
|
+ <groupId>org.eclipse.tycho</groupId>
|
||
|
+ <artifactId>target-platform-configuration</artifactId>
|
||
|
+ <configuration>
|
||
|
+ <dependency-resolution>
|
||
|
+ <extraRequirements>
|
||
|
+ <requirement>
|
||
|
+ <type>eclipse-plugin</type>
|
||
|
+ <id>javax.servlet</id>
|
||
|
+ <versionRange>0.0.0</versionRange>
|
||
|
+ </requirement>
|
||
|
+ <!--requirement>
|
||
|
+ <type>eclipse-plugin</type>
|
||
|
+ <id>org.eclipse.equinox.io</id>
|
||
|
+ <versionRange>0.0.0</versionRange>
|
||
|
+ </requirement-->
|
||
|
+ </extraRequirements>
|
||
|
+ </dependency-resolution>
|
||
|
+ </configuration>
|
||
|
+ </plugin>
|
||
|
+ <plugin>
|
||
|
+ <artifactId>maven-antrun-plugin</artifactId>
|
||
|
+ <version>1.7</version>
|
||
|
+ <executions>
|
||
|
+ <execution>
|
||
|
+ <id>natives</id>
|
||
|
+ <phase>process-resources</phase>
|
||
|
+ <configuration>
|
||
|
+ <target>
|
||
|
+ <unzip src="src.zip" dest="." overwrite="false"/>
|
||
|
+ <mkdir dir="src2/javax" />
|
||
|
+ <copy todir="src2/javax/"><fileset dir="../../../rt.equinox.bundles/bundles/org.eclipse.equinox.io/src/javax"/></copy>
|
||
|
+ </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>
|
||
|
|