Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorThanh Ha2012-12-10 20:19:19 +0000
committerThomas Watson2012-12-10 20:19:19 +0000
commit50373aba15f3ffd63d16f2e106e49927eaca384d (patch)
tree9e37e2d237c6daab6da9f3437217c717826eec75 /features
parent7951535facbb62377608600134842125f8346ec3 (diff)
downloadrt.equinox.bundles-50373aba15f3ffd63d16f2e106e49927eaca384d.tar.gz
rt.equinox.bundles-50373aba15f3ffd63d16f2e106e49927eaca384d.tar.xz
rt.equinox.bundles-50373aba15f3ffd63d16f2e106e49927eaca384d.zip
equinox.bundles
Diffstat (limited to 'features')
-rw-r--r--features/org.eclipse.equinox.core.feature/pom.xml42
-rw-r--r--features/org.eclipse.equinox.starterkit.product.feature/pom.xml38
2 files changed, 80 insertions, 0 deletions
diff --git a/features/org.eclipse.equinox.core.feature/pom.xml b/features/org.eclipse.equinox.core.feature/pom.xml
index 1ab71c797..7ab076d9b 100644
--- a/features/org.eclipse.equinox.core.feature/pom.xml
+++ b/features/org.eclipse.equinox.core.feature/pom.xml
@@ -25,4 +25,46 @@
<version>1.1.0-SNAPSHOT</version>
<packaging>eclipse-feature</packaging>
+ <build>
+ <plugins>
+ <plugin>
+ <artifactId>maven-resources-plugin</artifactId>
+ <version>2.6</version>
+ <executions>
+ <execution>
+ <id>copy-resources-win32.win32.x86</id>
+ <phase>validate</phase>
+ <goals>
+ <goal>copy-resources</goal>
+ </goals>
+ <configuration>
+ <overwrite>true</overwrite>
+ <outputDirectory>${basedir}/executables/win32.win32.x86</outputDirectory>
+ <resources>
+ <resource>
+ <directory>../../../rt.equinox.binaries/org.eclipse.equinox.executable/bin/win32/win32/x86</directory>
+ </resource>
+ </resources>
+ </configuration>
+ </execution>
+ <execution>
+ <id>copy-resources-win32.win32.x86_64</id>
+ <phase>validate</phase>
+ <goals>
+ <goal>copy-resources</goal>
+ </goals>
+ <configuration>
+ <overwrite>true</overwrite>
+ <outputDirectory>${basedir}/executables/win32.win32.x86_64</outputDirectory>
+ <resources>
+ <resource>
+ <directory>../../../rt.equinox.binaries/org.eclipse.equinox.executable/bin/win32/win32/x86_64</directory>
+ </resource>
+ </resources>
+ </configuration>
+ </execution>
+ </executions>
+ </plugin>
+ </plugins>
+ </build>
</project>
diff --git a/features/org.eclipse.equinox.starterkit.product.feature/pom.xml b/features/org.eclipse.equinox.starterkit.product.feature/pom.xml
index 0f7693eba..033a9c5a7 100644
--- a/features/org.eclipse.equinox.starterkit.product.feature/pom.xml
+++ b/features/org.eclipse.equinox.starterkit.product.feature/pom.xml
@@ -61,6 +61,44 @@
</environments>
</configuration>
</plugin>
+ <plugin>
+ <artifactId>maven-resources-plugin</artifactId>
+ <version>2.6</version>
+ <executions>
+ <execution>
+ <id>copy-resources-win32.win32.x86</id>
+ <phase>validate</phase>
+ <goals>
+ <goal>copy-resources</goal>
+ </goals>
+ <configuration>
+ <overwrite>true</overwrite>
+ <outputDirectory>${basedir}/executables/win32.win32.x86</outputDirectory>
+ <resources>
+ <resource>
+ <directory>../../../rt.equinox.binaries/org.eclipse.equinox.executable/bin/win32/win32/x86</directory>
+ </resource>
+ </resources>
+ </configuration>
+ </execution>
+ <execution>
+ <id>copy-resources-win32.win32.x86_64</id>
+ <phase>validate</phase>
+ <goals>
+ <goal>copy-resources</goal>
+ </goals>
+ <configuration>
+ <overwrite>true</overwrite>
+ <outputDirectory>${basedir}/executables/win32.win32.x86_64</outputDirectory>
+ <resources>
+ <resource>
+ <directory>../../../rt.equinox.binaries/org.eclipse.equinox.executable/bin/win32/win32/x86_64</directory>
+ </resource>
+ </resources>
+ </configuration>
+ </execution>
+ </executions>
+ </plugin>
</plugins>
</build>

Back to the top