Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDavid Williams2013-10-20 21:24:36 +0000
committerDavid Williams2013-10-20 21:24:36 +0000
commit9868bde9df4c0344c01580398837e4f3ca3fded9 (patch)
tree146cd5f7f8682b84d7c71aff0f14780bf0396867 /eclipse.platform.releng.tychoeclipsebuilder/equinox.starterkit.product/pom.xml
parentd349c827cb9ffc3f1f1ae123d11176fe2b8eceb9 (diff)
downloadeclipse.platform.releng.aggregator-9868bde9df4c0344c01580398837e4f3ca3fded9.tar.gz
eclipse.platform.releng.aggregator-9868bde9df4c0344c01580398837e4f3ca3fded9.tar.xz
eclipse.platform.releng.aggregator-9868bde9df4c0344c01580398837e4f3ca3fded9.zip
Bug 419092 - [Mac] Kepler doesn't launch without JRE 6, even if JDK 7 is
installed (Platform Runtime build)
Diffstat (limited to 'eclipse.platform.releng.tychoeclipsebuilder/equinox.starterkit.product/pom.xml')
-rw-r--r--eclipse.platform.releng.tychoeclipsebuilder/equinox.starterkit.product/pom.xml53
1 files changed, 1 insertions, 52 deletions
diff --git a/eclipse.platform.releng.tychoeclipsebuilder/equinox.starterkit.product/pom.xml b/eclipse.platform.releng.tychoeclipsebuilder/equinox.starterkit.product/pom.xml
index d07b4d9e8..c46264228 100644
--- a/eclipse.platform.releng.tychoeclipsebuilder/equinox.starterkit.product/pom.xml
+++ b/eclipse.platform.releng.tychoeclipsebuilder/equinox.starterkit.product/pom.xml
@@ -32,57 +32,6 @@
<format>'${buildId}'</format>
</configuration>
</plugin>
- <!--
- This is necessary as the icons can't be found otherwise.
- Tycho seems to resolve the icons from the target/products/<product.id>
- directory whereas PDE seems to prefix with 'platform:/plugin' and then
- resolve it appropriately...
- -->
- <plugin>
- <artifactId>maven-resources-plugin</artifactId>
- <version>2.6</version>
- <executions>
- <execution>
- <phase>prepare-package</phase>
- <id>copy-icons</id>
- <goals>
- <goal>copy-resources</goal>
- </goals>
- <configuration>
- <outputDirectory>${basedir}</outputDirectory>
- <resources>
- <resource>
- <directory>../../rt.equinox.bundles/features/org.eclipse.equinox.starterkit.product.feature
- </directory>
- <includes>
- <include>rt.icns</include>
- </includes>
- </resource>
- </resources>
- </configuration>
- </execution>
- <execution>
- <phase>prepare-package</phase>
- <id>copy-windows-icons</id>
- <goals>
- <goal>copy-resources</goal>
- </goals>
- <configuration>
- <outputDirectory>${basedir}</outputDirectory>
- <resources>
- <resource>
- <directory>../../rt.equinox.bundles/features/org.eclipse.equinox.starterkit.product.feature
- </directory>
- <includes>
- <include>rt.ico</include>
- </includes>
- </resource>
- </resources>
- </configuration>
- </execution>
- </executions>
- </plugin>
-
<plugin>
<groupId>org.eclipse.tycho</groupId>
@@ -98,7 +47,7 @@
<products>
<product>
<id>org.eclipse.rt.osgistarterkit.product</id>
- <rootFolder>eclipse</rootFolder>
+ <rootFolder>rt</rootFolder>
</product>
</products>
</configuration>

Back to the top