diff options
| author | Thanh Ha | 2012-10-02 13:14:48 +0000 |
|---|---|---|
| committer | Thomas Watson | 2012-10-02 13:14:48 +0000 |
| commit | ae0ea755c4ce133b4e423a3d0f7dc5d2af07638c (patch) | |
| tree | 96da87823b94651caf34296e44a835794a8e0168 | |
| parent | 330add94bbc571b479cc642d100251e178aa9c53 (diff) | |
| download | rt.equinox.bundles-ae0ea755c4ce133b4e423a3d0f7dc5d2af07638c.tar.gz rt.equinox.bundles-ae0ea755c4ce133b4e423a3d0f7dc5d2af07638c.tar.xz rt.equinox.bundles-ae0ea755c4ce133b4e423a3d0f7dc5d2af07638c.zip | |
Bug 390837 - Update POMS to support rootfilesv20121002-131448M20121010-1200M20121010-1000M20121008-1100M20121003-1200M20121003-1000
| -rw-r--r-- | features/org.eclipse.equinox.core.feature/pom.xml | 42 | ||||
| -rw-r--r-- | features/org.eclipse.equinox.starterkit.product.feature/pom.xml | 38 |
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> |
