Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rwxr-xr-xTMP/org.eclipse.sdk.epp/org.eclipse.sdk.epp.product4
-rw-r--r--TMP/org.eclipse.sdk.epp/pom.xml36
2 files changed, 38 insertions, 2 deletions
diff --git a/TMP/org.eclipse.sdk.epp/org.eclipse.sdk.epp.product b/TMP/org.eclipse.sdk.epp/org.eclipse.sdk.epp.product
index a98ceb250..fc2b8a97d 100755
--- a/TMP/org.eclipse.sdk.epp/org.eclipse.sdk.epp.product
+++ b/TMP/org.eclipse.sdk.epp/org.eclipse.sdk.epp.product
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?>
<?pde version="3.5"?>
-<product uid="org.eclipse.sdk.epp" name="Eclipse SDK" id="org.eclipse.sdk.ide" application="org.eclipse.ui.ide.workbench" version="3.8.0.qualifier" useFeatures="true" includeLaunchers="false">
+<product uid="org.eclipse.sdk.epp" name="Eclipse SDK" id="org.eclipse.sdk.ide" application="org.eclipse.ui.ide.workbench" version="3.8.0.qualifier" useFeatures="true" includeLaunchers="true">
<configIni use="default">
</configIni>
@@ -16,7 +16,7 @@
<splash
location="org.eclipse.platform" />
- <launcher name="eclipse">
+ <launcher name="p2bug352457">
<solaris/>
<win useIco="false">
<bmp/>
diff --git a/TMP/org.eclipse.sdk.epp/pom.xml b/TMP/org.eclipse.sdk.epp/pom.xml
index 11aa4d0df..517f624c1 100644
--- a/TMP/org.eclipse.sdk.epp/pom.xml
+++ b/TMP/org.eclipse.sdk.epp/pom.xml
@@ -44,6 +44,42 @@
<plugins>
<plugin>
<groupId>org.eclipse.tycho</groupId>
+ <artifactId>target-platform-configuration</artifactId>
+ <configuration>
+ <resolver>p2</resolver>
+ <environments>
+ <environment>
+ <os>linux</os>
+ <ws>gtk</ws>
+ <arch>x86</arch>
+ </environment>
+ <environment>
+ <os>linux</os>
+ <ws>gtk</ws>
+ <arch>x86_64</arch>
+ </environment>
+ <environment>
+ <os>win32</os>
+ <ws>win32</ws>
+ <arch>x86</arch>
+ </environment>
+ <environment>
+ <os>win32</os>
+ <ws>win32</ws>
+ <arch>x86_64</arch>
+ </environment>
+ <environment>
+ <os>macosx</os>
+ <ws>cocoa</ws>
+ <arch>x86_64</arch>
+ </environment>
+ </environments>
+ </configuration>
+ </plugin>
+
+
+ <plugin>
+ <groupId>org.eclipse.tycho</groupId>
<artifactId>tycho-p2-director-plugin</artifactId>
<executions>
<execution>

Back to the top