Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorIgor Fedorenko2011-12-10 04:34:58 +0000
committerIgor Fedorenko2011-12-10 04:34:58 +0000
commitbafa86d50ef92bc0b426f815121a75edf13d9194 (patch)
treeb40cdc9e6a88c0e905221c346f92cbcf0e6bc9f5
downloadeclipse.platform.releng.aggregator-bafa86d50ef92bc0b426f815121a75edf13d9194.tar.gz
eclipse.platform.releng.aggregator-bafa86d50ef92bc0b426f815121a75edf13d9194.tar.xz
eclipse.platform.releng.aggregator-bafa86d50ef92bc0b426f815121a75edf13d9194.zip
initial checkin
Signed-off-by: Igor Fedorenko <igor@ifedorenko.com>
-rw-r--r--.gitignore4
-rwxr-xr-xTMP/org.eclipse.cvs.source/build.properties12
-rwxr-xr-xTMP/org.eclipse.cvs.source/feature.xml19
-rw-r--r--TMP/org.eclipse.cvs.source/pom.xml18
-rwxr-xr-xTMP/org.eclipse.help.source/build.properties12
-rwxr-xr-xTMP/org.eclipse.help.source/feature.xml19
-rw-r--r--TMP/org.eclipse.help.source/pom.xml18
-rwxr-xr-xTMP/org.eclipse.jdt.source/build.properties12
-rwxr-xr-xTMP/org.eclipse.jdt.source/feature.xml19
-rw-r--r--TMP/org.eclipse.jdt.source/pom.xml18
-rwxr-xr-xTMP/org.eclipse.pde.source/build.properties12
-rwxr-xr-xTMP/org.eclipse.pde.source/feature.xml19
-rw-r--r--TMP/org.eclipse.pde.source/pom.xml18
-rwxr-xr-xTMP/org.eclipse.platform.source/build.properties12
-rwxr-xr-xTMP/org.eclipse.platform.source/feature.xml19
-rw-r--r--TMP/org.eclipse.platform.source/pom.xml18
-rw-r--r--TMP/org.eclipse.sdk.epp/backup/org.eclipse.sdk.epp.product43
-rwxr-xr-xTMP/org.eclipse.sdk.epp/org.eclipse.sdk.epp.product182
-rwxr-xr-xTMP/org.eclipse.sdk.epp/p2.inf71
-rw-r--r--TMP/org.eclipse.sdk.epp/pom.xml66
-rw-r--r--TMP/rcp.config/CVS/Entries6
-rw-r--r--TMP/rcp.config/CVS/Repository1
-rw-r--r--TMP/rcp.config/CVS/Root1
-rwxr-xr-xTMP/rcp.config/build.properties49
-rwxr-xr-xTMP/rcp.config/buildConfiguration.xml44
-rwxr-xr-xTMP/rcp.config/config.product5
-rwxr-xr-xTMP/rcp.config/feature.properties24
-rwxr-xr-xTMP/rcp.config/feature.xml12
-rwxr-xr-xTMP/rcp.config/p2.inf9
-rw-r--r--TMP/rcp.config/pom.xml18
-rw-r--r--eclipse-parent/pom.xml104
-rw-r--r--pom.xml65
32 files changed, 949 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore
new file mode 100644
index 000000000..e7b03ca6b
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1,4 @@
+/.project
+/.settings
+target/
+bin/
diff --git a/TMP/org.eclipse.cvs.source/build.properties b/TMP/org.eclipse.cvs.source/build.properties
new file mode 100755
index 000000000..31ba6ea59
--- /dev/null
+++ b/TMP/org.eclipse.cvs.source/build.properties
@@ -0,0 +1,12 @@
+###############################################################################
+# Copyright (c) 2008 IBM Corporation and others.
+# All rights reserved. This program and the accompanying materials
+# are made available under the terms of the Eclipse Public License v1.0
+# which accompanies this distribution, and is available at
+# http://www.eclipse.org/legal/epl-v10.html
+#
+#
+# Contributors:
+# IBM Corporation - initial API and implementation
+###############################################################################
+bin.includes = feature.xml
diff --git a/TMP/org.eclipse.cvs.source/feature.xml b/TMP/org.eclipse.cvs.source/feature.xml
new file mode 100755
index 000000000..40e0c3273
--- /dev/null
+++ b/TMP/org.eclipse.cvs.source/feature.xml
@@ -0,0 +1,19 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<feature
+ id="org.eclipse.cvs.source"
+ label="org.eclipse.cvs.source"
+ version="1.3.0.qualifier">
+
+ <description>
+ %description
+ </description>
+
+ <copyright>
+ %copyright
+ </copyright>
+
+ <license url="%licenseURL">
+ %license
+ </license>
+
+</feature>
diff --git a/TMP/org.eclipse.cvs.source/pom.xml b/TMP/org.eclipse.cvs.source/pom.xml
new file mode 100644
index 000000000..ff0a85b22
--- /dev/null
+++ b/TMP/org.eclipse.cvs.source/pom.xml
@@ -0,0 +1,18 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<project
+ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"
+ xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
+ <modelVersion>4.0.0</modelVersion>
+
+ <parent>
+ <groupId>org.eclipse</groupId>
+ <artifactId>eclipse-parent</artifactId>
+ <version>1.0.0-SNAPSHOT</version>
+ </parent>
+
+ <groupId>org.eclipse.cvs.source</groupId>
+ <artifactId>org.eclipse.cvs.source</artifactId>
+ <version>1.3.0-SNAPSHOT</version>
+ <packaging>eclipse-feature</packaging>
+
+</project>
diff --git a/TMP/org.eclipse.help.source/build.properties b/TMP/org.eclipse.help.source/build.properties
new file mode 100755
index 000000000..31ba6ea59
--- /dev/null
+++ b/TMP/org.eclipse.help.source/build.properties
@@ -0,0 +1,12 @@
+###############################################################################
+# Copyright (c) 2008 IBM Corporation and others.
+# All rights reserved. This program and the accompanying materials
+# are made available under the terms of the Eclipse Public License v1.0
+# which accompanies this distribution, and is available at
+# http://www.eclipse.org/legal/epl-v10.html
+#
+#
+# Contributors:
+# IBM Corporation - initial API and implementation
+###############################################################################
+bin.includes = feature.xml
diff --git a/TMP/org.eclipse.help.source/feature.xml b/TMP/org.eclipse.help.source/feature.xml
new file mode 100755
index 000000000..c0d00d967
--- /dev/null
+++ b/TMP/org.eclipse.help.source/feature.xml
@@ -0,0 +1,19 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<feature
+ id="org.eclipse.help.source"
+ label="org.eclipse.help.source"
+ version="1.3.0.qualifier">
+
+ <description>
+ %description
+ </description>
+
+ <copyright>
+ %copyright
+ </copyright>
+
+ <license url="%licenseURL">
+ %license
+ </license>
+
+</feature>
diff --git a/TMP/org.eclipse.help.source/pom.xml b/TMP/org.eclipse.help.source/pom.xml
new file mode 100644
index 000000000..18d7e49a1
--- /dev/null
+++ b/TMP/org.eclipse.help.source/pom.xml
@@ -0,0 +1,18 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<project
+ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"
+ xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
+ <modelVersion>4.0.0</modelVersion>
+
+ <parent>
+ <groupId>org.eclipse</groupId>
+ <artifactId>eclipse-parent</artifactId>
+ <version>1.0.0-SNAPSHOT</version>
+ </parent>
+
+ <groupId>org.eclipse.help.source</groupId>
+ <artifactId>org.eclipse.help.source</artifactId>
+ <version>1.3.0-SNAPSHOT</version>
+ <packaging>eclipse-feature</packaging>
+
+</project>
diff --git a/TMP/org.eclipse.jdt.source/build.properties b/TMP/org.eclipse.jdt.source/build.properties
new file mode 100755
index 000000000..31ba6ea59
--- /dev/null
+++ b/TMP/org.eclipse.jdt.source/build.properties
@@ -0,0 +1,12 @@
+###############################################################################
+# Copyright (c) 2008 IBM Corporation and others.
+# All rights reserved. This program and the accompanying materials
+# are made available under the terms of the Eclipse Public License v1.0
+# which accompanies this distribution, and is available at
+# http://www.eclipse.org/legal/epl-v10.html
+#
+#
+# Contributors:
+# IBM Corporation - initial API and implementation
+###############################################################################
+bin.includes = feature.xml
diff --git a/TMP/org.eclipse.jdt.source/feature.xml b/TMP/org.eclipse.jdt.source/feature.xml
new file mode 100755
index 000000000..887e30f1d
--- /dev/null
+++ b/TMP/org.eclipse.jdt.source/feature.xml
@@ -0,0 +1,19 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<feature
+ id="org.eclipse.jdt.source"
+ label="org.eclipse.jdt.source"
+ version="1.3.0.qualifier">
+
+ <description>
+ %description
+ </description>
+
+ <copyright>
+ %copyright
+ </copyright>
+
+ <license url="%licenseURL">
+ %license
+ </license>
+
+</feature>
diff --git a/TMP/org.eclipse.jdt.source/pom.xml b/TMP/org.eclipse.jdt.source/pom.xml
new file mode 100644
index 000000000..ffc2b4b39
--- /dev/null
+++ b/TMP/org.eclipse.jdt.source/pom.xml
@@ -0,0 +1,18 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<project
+ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"
+ xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
+ <modelVersion>4.0.0</modelVersion>
+
+ <parent>
+ <groupId>org.eclipse</groupId>
+ <artifactId>eclipse-parent</artifactId>
+ <version>1.0.0-SNAPSHOT</version>
+ </parent>
+
+ <groupId>org.eclipse.jdt.source</groupId>
+ <artifactId>org.eclipse.jdt.source</artifactId>
+ <version>1.3.0-SNAPSHOT</version>
+ <packaging>eclipse-feature</packaging>
+
+</project>
diff --git a/TMP/org.eclipse.pde.source/build.properties b/TMP/org.eclipse.pde.source/build.properties
new file mode 100755
index 000000000..31ba6ea59
--- /dev/null
+++ b/TMP/org.eclipse.pde.source/build.properties
@@ -0,0 +1,12 @@
+###############################################################################
+# Copyright (c) 2008 IBM Corporation and others.
+# All rights reserved. This program and the accompanying materials
+# are made available under the terms of the Eclipse Public License v1.0
+# which accompanies this distribution, and is available at
+# http://www.eclipse.org/legal/epl-v10.html
+#
+#
+# Contributors:
+# IBM Corporation - initial API and implementation
+###############################################################################
+bin.includes = feature.xml
diff --git a/TMP/org.eclipse.pde.source/feature.xml b/TMP/org.eclipse.pde.source/feature.xml
new file mode 100755
index 000000000..f4e2e03c2
--- /dev/null
+++ b/TMP/org.eclipse.pde.source/feature.xml
@@ -0,0 +1,19 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<feature
+ id="org.eclipse.pde.source"
+ label="org.eclipse.pde.source"
+ version="1.3.0.qualifier">
+
+ <description>
+ %description
+ </description>
+
+ <copyright>
+ %copyright
+ </copyright>
+
+ <license url="%licenseURL">
+ %license
+ </license>
+
+</feature>
diff --git a/TMP/org.eclipse.pde.source/pom.xml b/TMP/org.eclipse.pde.source/pom.xml
new file mode 100644
index 000000000..470e26a85
--- /dev/null
+++ b/TMP/org.eclipse.pde.source/pom.xml
@@ -0,0 +1,18 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<project
+ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"
+ xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
+ <modelVersion>4.0.0</modelVersion>
+
+ <parent>
+ <groupId>org.eclipse</groupId>
+ <artifactId>eclipse-parent</artifactId>
+ <version>1.0.0-SNAPSHOT</version>
+ </parent>
+
+ <groupId>org.eclipse.pde.source</groupId>
+ <artifactId>org.eclipse.pde.source</artifactId>
+ <version>1.3.0-SNAPSHOT</version>
+ <packaging>eclipse-feature</packaging>
+
+</project>
diff --git a/TMP/org.eclipse.platform.source/build.properties b/TMP/org.eclipse.platform.source/build.properties
new file mode 100755
index 000000000..31ba6ea59
--- /dev/null
+++ b/TMP/org.eclipse.platform.source/build.properties
@@ -0,0 +1,12 @@
+###############################################################################
+# Copyright (c) 2008 IBM Corporation and others.
+# All rights reserved. This program and the accompanying materials
+# are made available under the terms of the Eclipse Public License v1.0
+# which accompanies this distribution, and is available at
+# http://www.eclipse.org/legal/epl-v10.html
+#
+#
+# Contributors:
+# IBM Corporation - initial API and implementation
+###############################################################################
+bin.includes = feature.xml
diff --git a/TMP/org.eclipse.platform.source/feature.xml b/TMP/org.eclipse.platform.source/feature.xml
new file mode 100755
index 000000000..0b64f7e43
--- /dev/null
+++ b/TMP/org.eclipse.platform.source/feature.xml
@@ -0,0 +1,19 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<feature
+ id="org.eclipse.platform.source"
+ label="org.eclipse.platform.source"
+ version="1.3.0.qualifier">
+
+ <description>
+ %description
+ </description>
+
+ <copyright>
+ %copyright
+ </copyright>
+
+ <license url="%licenseURL">
+ %license
+ </license>
+
+</feature>
diff --git a/TMP/org.eclipse.platform.source/pom.xml b/TMP/org.eclipse.platform.source/pom.xml
new file mode 100644
index 000000000..3643163eb
--- /dev/null
+++ b/TMP/org.eclipse.platform.source/pom.xml
@@ -0,0 +1,18 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<project
+ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"
+ xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
+ <modelVersion>4.0.0</modelVersion>
+
+ <parent>
+ <groupId>org.eclipse</groupId>
+ <artifactId>eclipse-parent</artifactId>
+ <version>1.0.0-SNAPSHOT</version>
+ </parent>
+
+ <groupId>org.eclipse.platform.source</groupId>
+ <artifactId>org.eclipse.platform.source</artifactId>
+ <version>1.3.0-SNAPSHOT</version>
+ <packaging>eclipse-feature</packaging>
+
+</project>
diff --git a/TMP/org.eclipse.sdk.epp/backup/org.eclipse.sdk.epp.product b/TMP/org.eclipse.sdk.epp/backup/org.eclipse.sdk.epp.product
new file mode 100644
index 000000000..7a8530264
--- /dev/null
+++ b/TMP/org.eclipse.sdk.epp/backup/org.eclipse.sdk.epp.product
@@ -0,0 +1,43 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<?pde version="3.5"?>
+
+<product name="org.eclipse.sdk.epp" uid="org.eclipse.sdk.epp" id="org.eclipse.platform" application="org.eclipse.ui.ide.workbench" version="4.2.0.qualifier" useFeatures="true" includeLaunchers="true">
+
+ <configIni use="default">
+ </configIni>
+
+ <launcherArgs>
+ <vmArgsMac>-XstartOnFirstThread -Dorg.eclipse.swt.internal.carbon.smallFonts</vmArgsMac>
+ </launcherArgs>
+
+ <windowImages/>
+
+ <launcher name="p2bug352457">
+ <solaris/>
+ <win useIco="false">
+ <bmp/>
+ </win>
+ </launcher>
+
+ <vm>
+ </vm>
+
+ <plugins>
+ </plugins>
+
+ <features>
+ <feature id="org.eclipse.sdk"/>
+ <feature id="org.eclipse.equinox.p2.user.ui"/>
+ </features>
+
+ <configurations>
+ <plugin id="org.eclipse.core.runtime" autoStart="true" startLevel="4" />
+ <plugin id="org.eclipse.equinox.common" autoStart="true" startLevel="2" />
+ <plugin id="org.eclipse.equinox.ds" autoStart="true" startLevel="2" />
+ <plugin id="org.eclipse.equinox.p2.reconciler.dropins" autoStart="true" startLevel="4" />
+ <plugin id="org.eclipse.equinox.simpleconfigurator" autoStart="true" startLevel="1" />
+ <plugin id="org.eclipse.update.configurator" autoStart="true" startLevel="4" />
+ <property name="org.eclipse.update.reconcile" value="false" />
+ </configurations>
+
+</product>
diff --git a/TMP/org.eclipse.sdk.epp/org.eclipse.sdk.epp.product b/TMP/org.eclipse.sdk.epp/org.eclipse.sdk.epp.product
new file mode 100755
index 000000000..a98ceb250
--- /dev/null
+++ b/TMP/org.eclipse.sdk.epp/org.eclipse.sdk.epp.product
@@ -0,0 +1,182 @@
+<?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">
+
+ <configIni use="default">
+ </configIni>
+
+ <launcherArgs>
+ <programArgs>-showsplash org.eclipse.platform --launcher.XXMaxPermSize 256m --launcher.defaultAction openFile</programArgs>
+ <vmArgs>-Xms40m -Xmx384m</vmArgs>
+ <vmArgsMac>-Xdock:icon=../Resources/Eclipse.icns -XstartOnFirstThread -Dorg.eclipse.swt.internal.carbon.smallFonts</vmArgsMac>
+ </launcherArgs>
+
+ <windowImages/>
+
+ <splash
+ location="org.eclipse.platform" />
+ <launcher name="eclipse">
+ <solaris/>
+ <win useIco="false">
+ <bmp/>
+ </win>
+ </launcher>
+
+ <vm>
+ </vm>
+
+ <license>
+ <url>http://eclipse.org/legal/epl/notice.php</url>
+ <text>
+ Eclipse Foundation Software User Agreement
+February 1, 2011
+
+Usage Of Content
+
+THE ECLIPSE FOUNDATION MAKES AVAILABLE SOFTWARE, DOCUMENTATION, INFORMATION AND/OR
+OTHER MATERIALS FOR OPEN SOURCE PROJECTS (COLLECTIVELY &quot;CONTENT&quot;).
+USE OF THE CONTENT IS GOVERNED BY THE TERMS AND CONDITIONS OF THIS
+AGREEMENT AND/OR THE TERMS AND CONDITIONS OF LICENSE AGREEMENTS OR
+NOTICES INDICATED OR REFERENCED BELOW. BY USING THE CONTENT, YOU
+AGREE THAT YOUR USE OF THE CONTENT IS GOVERNED BY THIS AGREEMENT
+AND/OR THE TERMS AND CONDITIONS OF ANY APPLICABLE LICENSE AGREEMENTS
+OR NOTICES INDICATED OR REFERENCED BELOW. IF YOU DO NOT AGREE TO THE
+TERMS AND CONDITIONS OF THIS AGREEMENT AND THE TERMS AND CONDITIONS
+OF ANY APPLICABLE LICENSE AGREEMENTS OR NOTICES INDICATED OR REFERENCED
+BELOW, THEN YOU MAY NOT USE THE CONTENT.
+
+Applicable Licenses
+
+Unless otherwise indicated, all Content made available by the
+Eclipse Foundation is provided to you under the terms and conditions of
+the Eclipse Public License Version 1.0 (&quot;EPL&quot;). A copy of the EPL is
+provided with this Content and is also available at http://www.eclipse.org/legal/epl-v10.html.
+For purposes of the EPL, &quot;Program&quot; will mean the Content.
+
+Content includes, but is not limited to, source code, object code,
+documentation and other files maintained in the Eclipse Foundation source code
+repository (&quot;Repository&quot;) in software modules (&quot;Modules&quot;) and made available
+as downloadable archives (&quot;Downloads&quot;).
+
+ - Content may be structured and packaged into modules to facilitate delivering,
+ extending, and upgrading the Content. Typical modules may include plug-ins (&quot;Plug-ins&quot;),
+ plug-in fragments (&quot;Fragments&quot;), and features (&quot;Features&quot;).
+ - Each Plug-in or Fragment may be packaged as a sub-directory or JAR (Java(TM) ARchive)
+ in a directory named &quot;plugins&quot;.
+ - A Feature is a bundle of one or more Plug-ins and/or Fragments and associated material.
+ Each Feature may be packaged as a sub-directory in a directory named &quot;features&quot;.
+ Within a Feature, files named &quot;feature.xml&quot; may contain a list of the names and version
+ numbers of the Plug-ins and/or Fragments associated with that Feature.
+ - Features may also include other Features (&quot;Included Features&quot;). Within a Feature, files
+ named &quot;feature.xml&quot; may contain a list of the names and version numbers of Included Features.
+
+The terms and conditions governing Plug-ins and Fragments should be
+contained in files named &quot;about.html&quot; (&quot;Abouts&quot;). The terms and
+conditions governing Features and Included Features should be contained
+in files named &quot;license.html&quot; (&quot;Feature Licenses&quot;). Abouts and Feature
+Licenses may be located in any directory of a Download or Module
+including, but not limited to the following locations:
+
+ - The top-level (root) directory
+ - Plug-in and Fragment directories
+ - Inside Plug-ins and Fragments packaged as JARs
+ - Sub-directories of the directory named &quot;src&quot; of certain Plug-ins
+ - Feature directories
+
+Note: if a Feature made available by the Eclipse Foundation is installed using the
+Provisioning Technology (as defined below), you must agree to a license (&quot;Feature
+Update License&quot;) during the installation process. If the Feature contains
+Included Features, the Feature Update License should either provide you
+with the terms and conditions governing the Included Features or inform
+you where you can locate them. Feature Update Licenses may be found in
+the &quot;license&quot; property of files named &quot;feature.properties&quot; found within a Feature.
+Such Abouts, Feature Licenses, and Feature Update Licenses contain the
+terms and conditions (or references to such terms and conditions) that
+govern your use of the associated Content in that directory.
+
+THE ABOUTS, FEATURE LICENSES, AND FEATURE UPDATE LICENSES MAY REFER
+TO THE EPL OR OTHER LICENSE AGREEMENTS, NOTICES OR TERMS AND CONDITIONS.
+SOME OF THESE OTHER LICENSE AGREEMENTS MAY INCLUDE (BUT ARE NOT LIMITED TO):
+
+ - Eclipse Distribution License Version 1.0 (available at http://www.eclipse.org/licenses/edl-v1.0.html)
+ - Common Public License Version 1.0 (available at http://www.eclipse.org/legal/cpl-v10.html)
+ - Apache Software License 1.1 (available at http://www.apache.org/licenses/LICENSE)
+ - Apache Software License 2.0 (available at http://www.apache.org/licenses/LICENSE-2.0)
+ - Metro Link Public License 1.00 (available at http://www.opengroup.org/openmotif/supporters/metrolink/license.html)
+ - Mozilla Public License Version 1.1 (available at http://www.mozilla.org/MPL/MPL-1.1.html)
+
+IT IS YOUR OBLIGATION TO READ AND ACCEPT ALL SUCH TERMS AND CONDITIONS PRIOR
+TO USE OF THE CONTENT. If no About, Feature License, or Feature Update License
+is provided, please contact the Eclipse Foundation to determine what terms and conditions
+govern that particular Content.
+
+Use of Provisioning Technology
+
+The Eclipse Foundation makes available provisioning software, examples of which include,
+but are not limited to, p2 and the Eclipse Update Manager (&quot;Provisioning Technology&quot;) for
+the purpose of allowing users to install software, documentation, information and/or
+other materials (collectively &quot;Installable Software&quot;). This capability is provided with
+the intent of allowing such users to install, extend and update Eclipse-based products.
+Information about packaging Installable Software is available at
+http://eclipse.org/equinox/p2/repository_packaging.html (&quot;Specification&quot;).
+
+You may use Provisioning Technology to allow other parties to install Installable Software.
+You shall be responsible for enabling the applicable license agreements relating to the
+Installable Software to be presented to, and accepted by, the users of the Provisioning Technology
+in accordance with the Specification. By using Provisioning Technology in such a manner and
+making it available in accordance with the Specification, you further acknowledge your
+agreement to, and the acquisition of all necessary rights to permit the following:
+
+ 1. A series of actions may occur (&quot;Provisioning Process&quot;) in which a user may execute
+ the Provisioning Technology on a machine (&quot;Target Machine&quot;) with the intent of installing,
+ extending or updating the functionality of an Eclipse-based product.
+ 2. During the Provisioning Process, the Provisioning Technology may cause third party
+ Installable Software or a portion thereof to be accessed and copied to the Target Machine.
+ 3. Pursuant to the Specification, you will provide to the user the terms and conditions that
+ govern the use of the Installable Software (&quot;Installable Software Agreement&quot;) and such
+ Installable Software Agreement shall be accessed from the Target Machine in accordance
+ with the Specification. Such Installable Software Agreement must inform the user of the
+ terms and conditions that govern the Installable Software and must solicit acceptance by
+ the end user in the manner prescribed in such Installable Software Agreement. Upon such
+ indication of agreement by the user, the provisioning Technology will complete installation
+ of the Installable Software.
+
+Cryptography
+
+Content may contain encryption software. The country in which you are
+currently may have restrictions on the import, possession, and use,
+and/or re-export to another country, of encryption software. BEFORE
+using any encryption software, please check the country&apos;s laws,
+regulations and policies concerning the import, possession, or use, and
+re-export of encryption software, to see if this is permitted.
+
+Java and all Java-based trademarks are trademarks of Oracle Corporation in the United States, other countries, or both.
+ </text>
+ </license>
+
+ <plugins>
+ </plugins>
+
+ <features>
+ <feature id="org.eclipse.sdk"/>
+ <feature id="org.eclipse.equinox.p2.user.ui"/>
+ <!--
+ <feature id="org.eclipse.rcp.configuration"/>
+ -->
+ </features>
+
+ <configurations>
+ <plugin id="org.eclipse.core.runtime" autoStart="true" startLevel="4" />
+ <plugin id="org.eclipse.equinox.common" autoStart="true" startLevel="2" />
+ <plugin id="org.eclipse.equinox.ds" autoStart="true" startLevel="2" />
+ <plugin id="org.eclipse.equinox.event" autoStart="true" startLevel="2" />
+ <plugin id="org.eclipse.equinox.p2.reconciler.dropins" autoStart="true" startLevel="4" />
+ <plugin id="org.eclipse.equinox.simpleconfigurator" autoStart="true" startLevel="1" />
+ <plugin id="org.eclipse.update.configurator" autoStart="true" startLevel="3" />
+ <property name="org.eclipse.update.reconcile" value="false" />
+ <property name="osgi.bundles.defaultStartLevel" value="4" />
+ <property name="eclipse.buildId" value="@qualifier@"/>
+ </configurations>
+
+</product>
diff --git a/TMP/org.eclipse.sdk.epp/p2.inf b/TMP/org.eclipse.sdk.epp/p2.inf
new file mode 100755
index 000000000..1e870227b
--- /dev/null
+++ b/TMP/org.eclipse.sdk.epp/p2.inf
@@ -0,0 +1,71 @@
+instructions.configure=\
+addRepository(type:0,location:http${#58}//download.eclipse.org/eclipse/updates/3.8,name:The Eclipse Project Updates);\
+addRepository(type:1,location:http${#58}//download.eclipse.org/eclipse/updates/3.8,name:The Eclipse Project Updates);\
+ mkdir(path:${installFolder}/dropins);
+requires.1.namespace=org.eclipse.equinox.p2.iu
+requires.1.name=toolingorg.eclipse.configuration.macosx
+requires.1.filter=(osgi.os=macosx)
+requires.1.range=[1.0.0,1.0.0]
+requires.1.greedy=true
+
+requires.2.namespace=org.eclipse.equinox.p2.iu
+requires.2.name=toolingorg.eclipse.configuration
+requires.2.filter=(!(osgi.os=macosx))
+requires.2.range=[1.0.0,1.0.0]
+requires.2.greedy=true
+
+requires.3.namespace=org.eclipse.equinox.p2.iu
+requires.3.name=toolingorg.eclipse.configuration.macosx.x86_64
+requires.3.filter=(&(osgi.os=macosx) (osgi.arch=x86_64))
+requires.3.range=[1.0.0,1.0.0]
+requires.3.greedy=true
+
+units.1.id=toolingorg.eclipse.configuration.macosx
+units.1.version=1.0.0
+units.1.provides.1.namespace=org.eclipse.equinox.p2.iu
+units.1.provides.1.name=toolingorg.eclipse.configuration.macosx
+units.1.provides.1.version=1.0.0
+units.1.filter=(osgi.os=macosx)
+units.1.touchpoint.id=org.eclipse.equinox.p2.osgi
+units.1.touchpoint.version=1.0.0
+units.1.instructions.configure=setProgramProperty(propName:osgi.instance.area.default,propValue:@user.home/Documents/workspace);
+units.1.instructions.unconfigure=setProgramProperty(propName:osgi.instance.area.default,propValue:);
+
+units.2.id=toolingorg.eclipse.configuration
+units.2.version=1.0.0
+units.2.provides.1.namespace=org.eclipse.equinox.p2.iu
+units.2.provides.1.name=toolingorg.eclipse.configuration
+units.2.provides.1.version=1.0.0
+units.2.filter=(!(osgi.os=macosx))
+units.2.touchpoint.id=org.eclipse.equinox.p2.osgi
+units.2.touchpoint.version=1.0.0
+units.2.instructions.configure=setProgramProperty(propName:osgi.instance.area.default,propValue:@user.home/workspace);
+units.2.instructions.unconfigure=setProgramProperty(propName:osgi.instance.area.default,propValue:);
+
+units.3.id=toolingorg.eclipse.configuration.macosx.x86_64
+units.3.version=1.0.0
+units.3.provides.1.namespace=org.eclipse.equinox.p2.iu
+units.3.provides.1.name=toolingorg.eclipse.configuration.macosx.x86_64
+units.3.provides.1.version=1.0.0
+units.3.filter=(&(osgi.os=macosx) (osgi.arch=x86_64))
+units.3.touchpoint.id=org.eclipse.equinox.p2.osgi
+units.3.touchpoint.version=1.0.0
+units.3.instructions.configure=addJvmArg(jvmArg:-Xms40m);addJvmArg(jvmArg:-Xmx512m);
+units.3.instructions.unconfigure=removeJvmArg(jvmArg:-Xms40m);removeJvmArg(jvmArg:-Xmx512m);
+
+requires.4.namespace=org.eclipse.equinox.p2.iu
+requires.4.name=toolingorg.eclipse.configuration.aix.ppc64
+requires.4.filter=(&(osgi.os=aix) (osgi.arch=ppc64))
+requires.4.range=[1.0.0,1.0.0]
+requires.4.greedy=true
+
+units.4.id=toolingorg.eclipse.configuration.aix.ppc64
+units.4.version=1.0.0
+units.4.provides.1.namespace=org.eclipse.equinox.p2.iu
+units.4.provides.1.name=toolingorg.eclipse.configuration.aix.ppc64
+units.4.provides.1.version=1.0.0
+units.4.filter=(&(osgi.os=aix) (osgi.arch=ppc64))
+units.4.touchpoint.id=org.eclipse.equinox.p2.osgi
+units.4.touchpoint.version=1.0.0
+units.4.instructions.configure=addJvmArg(jvmArg:-Xms40m);addJvmArg(jvmArg:-Xmx512m);
+units.4.instructions.unconfigure=removeJvmArg(jvmArg:-Xms40m);removeJvmArg(jvmArg:-Xmx512m);
diff --git a/TMP/org.eclipse.sdk.epp/pom.xml b/TMP/org.eclipse.sdk.epp/pom.xml
new file mode 100644
index 000000000..11aa4d0df
--- /dev/null
+++ b/TMP/org.eclipse.sdk.epp/pom.xml
@@ -0,0 +1,66 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
+ <modelVersion>4.0.0</modelVersion>
+
+ <parent>
+ <groupId>org.eclipse</groupId>
+ <artifactId>eclipse-parent</artifactId>
+ <version>1.0.0-SNAPSHOT</version>
+ </parent>
+
+ <artifactId>org.eclipse.sdk.epp</artifactId>
+ <packaging>eclipse-repository</packaging>
+
+ <repositories>
+ <repository>
+ <id>orbit</id>
+ <url>${orbit-repo.url}</url>
+ <layout>p2</layout>
+ </repository>
+ <repository>
+ <id>emf</id>
+ <url>${emf-repo.url}</url>
+ <layout>p2</layout>
+ </repository>
+ <repository>
+ <id>natives</id>
+ <url>${natives-repo.url}</url>
+ <layout>p2</layout>
+ </repository>
+ <repository>
+ <id>ecf</id>
+ <url>${ecf-repo.url}</url>
+ <layout>p2</layout>
+ </repository>
+ <repository>
+ <id>jetty</id>
+ <url>${jetty-repo.url}</url>
+ <layout>p2</layout>
+ </repository>
+ </repositories>
+
+ <build>
+ <plugins>
+ <plugin>
+ <groupId>org.eclipse.tycho</groupId>
+ <artifactId>tycho-p2-director-plugin</artifactId>
+ <executions>
+ <execution>
+ <id>materialize-products</id>
+ <goals>
+ <goal>materialize-products</goal>
+ </goals>
+ </execution>
+ <execution>
+ <id>archive-products</id>
+ <goals>
+ <goal>archive-products</goal>
+ </goals>
+ </execution>
+ </executions>
+ </plugin>
+ </plugins>
+ </build>
+
+</project>
diff --git a/TMP/rcp.config/CVS/Entries b/TMP/rcp.config/CVS/Entries
new file mode 100644
index 000000000..1915b9f1f
--- /dev/null
+++ b/TMP/rcp.config/CVS/Entries
@@ -0,0 +1,6 @@
+/build.properties/1.26/Tue Jun 7 13:22:45 2011//
+/buildConfiguration.xml/1.11/Fri Feb 18 21:26:47 2011//
+/config.product/1.2/Thu Apr 23 21:26:40 2009//
+/feature.properties/1.1/Tue Apr 28 15:27:27 2009//
+/feature.xml/1.3/Tue Apr 28 15:27:27 2009//
+/p2.inf/1.9/Fri May 22 20:51:28 2009//
diff --git a/TMP/rcp.config/CVS/Repository b/TMP/rcp.config/CVS/Repository
new file mode 100644
index 000000000..011b21b03
--- /dev/null
+++ b/TMP/rcp.config/CVS/Repository
@@ -0,0 +1 @@
+org.eclipse.releng.eclipsebuilder/eclipse/buildConfigs/rcp.config
diff --git a/TMP/rcp.config/CVS/Root b/TMP/rcp.config/CVS/Root
new file mode 100644
index 000000000..2d37d165b
--- /dev/null
+++ b/TMP/rcp.config/CVS/Root
@@ -0,0 +1 @@
+:pserver:anonymous@dev.eclipse.org:/cvsroot/eclipse
diff --git a/TMP/rcp.config/build.properties b/TMP/rcp.config/build.properties
new file mode 100755
index 000000000..acf1faa19
--- /dev/null
+++ b/TMP/rcp.config/build.properties
@@ -0,0 +1,49 @@
+###############################################################################
+# Copyright (c) 2000, 2009 IBM Corporation and others.
+# All rights reserved. This program and the accompanying materials
+# are made available under the terms of the Eclipse Public License v1.0
+# which accompanies this distribution, and is available at
+# http://www.eclipse.org/legal/epl-v10.html
+#
+# Contributors:
+# IBM Corporation - initial API and implementation
+###############################################################################
+
+root.permissions.755=eclipse
+root.win32.win32.x86=absolute:${buildDirectory}/features/org.eclipse.equinox.executable/bin/win32/win32/x86
+root.win32.win32.x86_64=absolute:${buildDirectory}/features/org.eclipse.equinox.executable/bin/win32/win32/x86_64
+root.aix.gtk.ppc=absolute:${buildDirectory}/features/org.eclipse.equinox.executable/bin/gtk/aix/ppc
+root.aix.gtk.ppc64=absolute:${buildDirectory}/features/org.eclipse.equinox.executable/bin/gtk/aix/ppc64
+root.hpux.gtk.ia64_32=absolute:${buildDirectory}/features/org.eclipse.equinox.executable/bin/gtk/hpux/ia64_32
+root.solaris.gtk.sparc=absolute:${buildDirectory}/features/org.eclipse.equinox.executable/bin/gtk/solaris/sparc
+root.solaris.gtk.x86=absolute:${buildDirectory}/features/org.eclipse.equinox.executable/bin/gtk/solaris/x86
+
+root.linux.gtk.x86=absolute:${buildDirectory}/features/org.eclipse.platform/about_files/linux.gtk.x86,absolute:${buildDirectory}/features/org.eclipse.equinox.executable/bin/gtk/linux/x86
+root.linux.gtk.x86.permissions.755=*.so*
+root.linux.gtk.ppc64=absolute:${buildDirectory}/features/org.eclipse.platform/about_files/linux.gtk.ppc,absolute:${buildDirectory}/features/org.eclipse.equinox.executable/bin/gtk/linux/ppc64
+root.linux.gtk.ppc64.permissions.755=*.so*
+root.linux.gtk.x86_64=absolute:${buildDirectory}/features/org.eclipse.platform/about_files/linux.gtk.x86_64,absolute:${buildDirectory}/features/org.eclipse.equinox.executable/bin/gtk/linux/x86_64
+root.linux.gtk.x86_64.permissions.755=*.so*
+root.linux.gtk.s390x=absolute:${buildDirectory}/features/org.eclipse.platform/about_files/linux.gtk.s390x,absolute:${buildDirectory}/features/org.eclipse.equinox.executable/contributed/gtk/linux/s390x
+root.linux.gtk.s390x.permissions.755=*.so*
+root.linux.gtk.s390=absolute:${buildDirectory}/features/org.eclipse.platform/about_files/linux.gtk.s390,absolute:${buildDirectory}/features/org.eclipse.equinox.executable/contributed/gtk/linux/s390
+root.linux.gtk.s390.permissions.755=*.so*
+
+root.macosx.cocoa.x86.folder.Eclipse.app/Contents/MacOS=absolute:file:${buildDirectory}/features/org.eclipse.equinox.executable/bin/cocoa/macosx/x86/Eclipse.app/Contents/MacOS/eclipse
+root.macosx.cocoa.x86.folder.Eclipse.app/Contents/Resources=absolute:${buildDirectory}/features/org.eclipse.equinox.executable/bin/cocoa/macosx/x86/Eclipse.app/Contents/Resources
+root.macosx.cocoa.x86.folder.Eclipse.app/Contents=absolute:file:${buildDirectory}/features/org.eclipse.equinox.executable/bin/cocoa/macosx/x86/Eclipse.app/Contents/Info.plist
+root.macosx.cocoa.x86.permissions.755=Eclipse.app/Contents/MacOS/eclipse,Eclipse.app/Contents/MacOS/java_swt
+root.macosx.cocoa.x86.link=Eclipse.app/Contents/MacOS/eclipse,eclipse
+
+root.macosx.cocoa.x86_64.folder.Eclipse.app/Contents/MacOS=absolute:file:${buildDirectory}/features/org.eclipse.equinox.executable/bin/cocoa/macosx/x86_64/Eclipse.app/Contents/MacOS/eclipse
+root.macosx.cocoa.x86_64.folder.Eclipse.app/Contents/Resources=absolute:${buildDirectory}/features/org.eclipse.equinox.executable/bin/cocoa/macosx/x86_64/Eclipse.app/Contents/Resources
+root.macosx.cocoa.x86_64.folder.Eclipse.app/Contents=absolute:file:${buildDirectory}/features/org.eclipse.equinox.executable/bin/cocoa/macosx/x86_64/Eclipse.app/Contents/Info.plist
+root.macosx.cocoa.x86_64.permissions.755=Eclipse.app/Contents/MacOS/eclipse,Eclipse.app/Contents/MacOS/java_swt
+root.macosx.cocoa.x86_64.link=Eclipse.app/Contents/MacOS/eclipse,eclipse
+
+
+
+
+
+
+
diff --git a/TMP/rcp.config/buildConfiguration.xml b/TMP/rcp.config/buildConfiguration.xml
new file mode 100755
index 000000000..7ef7e9277
--- /dev/null
+++ b/TMP/rcp.config/buildConfiguration.xml
@@ -0,0 +1,44 @@
+<project name="org.eclipse.rcp.configuration" default="main" basedir=".">
+
+ <target name="main" >
+ <property name="product" value="${basedir}/config.product" />
+ <property name="id" value="org.eclipse.pde.build.container.feature" />
+ <property name="type" value="feature" />
+ <property name="verify" value="false" />
+
+ <path id="launcher.paths">
+ <fileset dir="${reposource}" includes="plugins/org.eclipse.equinox.launcher*" />
+ <!-- the built version of the org.eclipse.equinox.executable feature -->
+ <dirset dir="${buildDirectory}" includes="features/org.eclipse.equinox.executable*" />
+ <dirset dir="${buildDirectory}" includes="features/org.eclipse.license*" />
+ </path>
+
+ <!-- generate a feature based on our .product file -->
+ <property file="${eclipse.build.configs}/master/build.properties" />
+ <ant antfile="${eclipse.pdebuild.scripts}/productBuild/productBuild.xml" target="generateFeature" >
+ <property name="nestedInclusions" value="false" />
+ <property name="buildDirectory" value="${basedir}/temp"/>
+ </ant>
+ <!-- generate product build scripts for the generated feature -->
+ <ant antfile="${eclipse.pdebuild.scripts}/genericTargets.xml" target="generateScript" >
+ <property name="buildDirectory" value="${basedir}/temp"/>
+ <property name="baseLocation" value="" />
+ <property name="transformedRepoLocation" value="" />
+ <property name="pluginPath" refid="launcher.paths" />
+ <property name="forceContextQualifier" value="${buildId}" />
+ </ant>
+
+ <!-- get the generate p2.inf that got generated with the above scripts -->
+ <move file="${basedir}/temp/features/org.eclipse.pde.build.container.feature/product/p2.inf" tofile="${basedir}/p2.inf" overwrite="true" />
+ <replace file="${basedir}/p2.inf" token="@FLAVOR@" value="tooling" />
+
+ <!-- publish the configuration feature with the generated p2.inf -->
+ <replace file="${basedir}/feature.xml" token="@qualifier@" value="${buildId}" />
+ <eclipse.gatherFeature
+ metadataRepository="file:${reposource}"
+ artifactRepository="file:${reposource}"
+ buildResultFolder="${basedir}"
+ baseDirectory="${basedir}"
+ />
+ </target>
+</project>
diff --git a/TMP/rcp.config/config.product b/TMP/rcp.config/config.product
new file mode 100755
index 000000000..da4fbe94c
--- /dev/null
+++ b/TMP/rcp.config/config.product
@@ -0,0 +1,5 @@
+<product uid="org.eclipse.rcp.configuration" version="1.0.0.qualifier" useFeatures="true" includeLaunchers="true">
+ <features>
+ <feature id="org.eclipse.equinox.executable" />
+ </features>
+</product>
diff --git a/TMP/rcp.config/feature.properties b/TMP/rcp.config/feature.properties
new file mode 100755
index 000000000..3f0136176
--- /dev/null
+++ b/TMP/rcp.config/feature.properties
@@ -0,0 +1,24 @@
+###############################################################################
+# Copyright (c) 2009 IBM Corporation and others.
+# All rights reserved. This program and the accompanying materials
+# are made available under the terms of the Eclipse Public License v1.0
+# which accompanies this distribution, and is available at
+# http://www.eclipse.org/legal/epl-v10.html
+#
+# Contributors:
+# IBM Corporation - initial API and implementation
+###############################################################################
+# feature.properties
+# contains externalized strings for feature.xml
+# "%foo" in feature.xml corresponds to the key "foo" in this file
+# java.io.Properties file (ISO 8859-1 with "\" escapes)
+# This file should be translated.
+
+# "featureName" property - name of the feature
+featureName=Eclipse Product Configuration
+
+# "providerName" property - name of the company that provides the feature
+providerName=Eclipse.org
+
+# "description" property - description of the feature
+description=Configuration information for the Eclipse product
diff --git a/TMP/rcp.config/feature.xml b/TMP/rcp.config/feature.xml
new file mode 100755
index 000000000..98081dc63
--- /dev/null
+++ b/TMP/rcp.config/feature.xml
@@ -0,0 +1,12 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<feature
+ id="org.eclipse.rcp.configuration"
+ label="%featureName"
+ version="1.0.0.qualifier"
+ provider-name="%providerName">
+
+ <description>
+ %description
+ </description>
+
+</feature>
diff --git a/TMP/rcp.config/p2.inf b/TMP/rcp.config/p2.inf
new file mode 100755
index 000000000..118d85298
--- /dev/null
+++ b/TMP/rcp.config/p2.inf
@@ -0,0 +1,9 @@
+org.eclipse.pde.build.append.startlevels=false
+org.eclipse.pde.build.append.launchers=true
+properties.1.name=org.eclipse.equinox.p2.type.group
+properties.1.value=false
+
+instructions.configure.import=org.eclipse.equinox.p2.touchpoint.eclipse.setLauncherName
+instructions.configure=setLauncherName(name:eclipse);
+instructions.unconfigure.import=org.eclipse.equinox.p2.touchpoint.eclipse.setLauncherName
+instructions.unconfigure=setLauncherName();
diff --git a/TMP/rcp.config/pom.xml b/TMP/rcp.config/pom.xml
new file mode 100644
index 000000000..df4fa2569
--- /dev/null
+++ b/TMP/rcp.config/pom.xml
@@ -0,0 +1,18 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<project
+ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"
+ xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
+ <modelVersion>4.0.0</modelVersion>
+
+ <parent>
+ <groupId>org.eclipse</groupId>
+ <artifactId>eclipse-parent</artifactId>
+ <version>1.0.0-SNAPSHOT</version>
+ </parent>
+
+ <groupId>org.eclipse.rcp.configuration</groupId>
+ <artifactId>org.eclipse.rcp.configuration</artifactId>
+ <version>1.0.0-SNAPSHOT</version>
+ <packaging>eclipse-feature</packaging>
+
+</project>
diff --git a/eclipse-parent/pom.xml b/eclipse-parent/pom.xml
new file mode 100644
index 000000000..1c23b9eaf
--- /dev/null
+++ b/eclipse-parent/pom.xml
@@ -0,0 +1,104 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<project
+ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"
+ xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
+ <modelVersion>4.0.0</modelVersion>
+
+ <groupId>org.eclipse</groupId>
+ <artifactId>eclipse-parent</artifactId>
+ <version>1.0.0-SNAPSHOT</version>
+ <packaging>pom</packaging>
+
+ <properties>
+ <tycho.version>0.14.0-SNAPSHOT</tycho.version>
+
+ <orbit-repo.url>http://download.eclipse.org/tools/orbit/downloads/drops/S20111018035124/repository/</orbit-repo.url>
+ <emf-repo.url>http://download.eclipse.org/modeling/emf/emf/updates/2.7</emf-repo.url>
+ <jetty-repo.url>http://www.eclipse.org/external/jetty/updates/jetty-bundles-8.x/8.0.4.v20111024/</jetty-repo.url>
+ <ecf-repo.url>http://download.eclipse.org/rt/ecf/3.5.3/site.p2</ecf-repo.url>
+
+ <natives-repo.url>file:///var/tmp/lts/natives</natives-repo.url>
+ </properties>
+
+ <pluginRepositories>
+ <pluginRepository>
+ <id>tycho</id>
+ <url>https://repository.sonatype.org/content/repositories/snapshots/</url>
+ <releases><enabled>false</enabled></releases>
+ <snapshots><enabled>true</enabled></snapshots>
+ </pluginRepository>
+ </pluginRepositories>
+
+ <build>
+ <plugins>
+ <plugin>
+ <groupId>org.eclipse.tycho</groupId>
+ <artifactId>tycho-maven-plugin</artifactId>
+ <version>${tycho.version}</version>
+ <extensions>true</extensions>
+ </plugin>
+
+ <plugin>
+ <groupId>org.eclipse.tycho</groupId>
+ <artifactId>target-platform-configuration</artifactId>
+ <configuration>
+ <!--
+ org.eclipse.equinox.security requires J2SE-1.4 to resolve a number of javax.crypto.* and javax.security.*
+ packages. This makes J2SE-1.4 effectively the minimal execution environment required by eclipse platform
+ build since many platform bundles directly or indirectly depend on org.eclipse.equinox.security.
+ -->
+ <executionEnvironment>?J2SE-1.4</executionEnvironment>
+ </configuration>
+ </plugin>
+
+ <plugin>
+ <groupId>org.eclipse.tycho</groupId>
+ <artifactId>tycho-source-plugin</artifactId>
+ <executions>
+ <execution>
+ <id>plugin-source</id>
+ <goals>
+ <goal>plugin-source</goal>
+ </goals>
+ </execution>
+ </executions>
+ </plugin>
+ </plugins>
+
+ <pluginManagement>
+ <plugins>
+ <plugin>
+ <groupId>org.eclipse.tycho</groupId>
+ <artifactId>target-platform-configuration</artifactId>
+ <version>${tycho.version}</version>
+ </plugin>
+ <plugin>
+ <groupId>org.eclipse.tycho</groupId>
+ <artifactId>tycho-compiler-plugin</artifactId>
+ <version>${tycho.version}</version>
+ </plugin>
+ <plugin>
+ <groupId>org.eclipse.tycho</groupId>
+ <artifactId>tycho-packaging-plugin</artifactId>
+ <version>${tycho.version}</version>
+ </plugin>
+ <plugin>
+ <groupId>org.eclipse.tycho</groupId>
+ <artifactId>tycho-surefire-plugin</artifactId>
+ <version>${tycho.version}</version>
+ </plugin>
+ <plugin>
+ <groupId>org.eclipse.tycho</groupId>
+ <artifactId>tycho-source-plugin</artifactId>
+ <version>${tycho.version}</version>
+ </plugin>
+ <plugin>
+ <groupId>org.eclipse.tycho</groupId>
+ <artifactId>tycho-p2-director-plugin</artifactId>
+ <version>${tycho.version}</version>
+ </plugin>
+ </plugins>
+ </pluginManagement>
+ </build>
+
+</project>
diff --git a/pom.xml b/pom.xml
new file mode 100644
index 000000000..964757f0b
--- /dev/null
+++ b/pom.xml
@@ -0,0 +1,65 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<project
+ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"
+ xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
+ <modelVersion>4.0.0</modelVersion>
+
+ <groupId>org.eclipse.runtime</groupId>
+ <artifactId>eclipse-runtime-aggregator</artifactId>
+ <version>1.0.0-SNAPSHOT</version>
+ <packaging>pom</packaging>
+
+ <modules>
+ <module>eclipse-parent</module>
+
+ <module>eclipse.jdt/</module>
+ <module>eclipse.jdt.core</module>
+ <module>eclipse.jdt.core.binaries</module>
+ <module>eclipse.jdt.debug</module>
+ <module>eclipse.jdt.ui</module>
+
+ <module>eclipse.pde</module>
+ <module>eclipse.pde.build</module>
+ <module>eclipse.pde.ui</module>
+
+ <module>eclipse.platform</module>
+
+ <module>eclipse.platform.ui</module>
+
+ <module>eclipse.platform.common</module>
+
+ <module>eclipse.platform.debug</module>
+
+ <module>eclipse.platform.resources</module>
+
+ <module>eclipse.platform.runtime</module>
+
+ <module>eclipse.platform.team</module>
+
+ <module>eclipse.platform.text</module>
+
+ <module>eclipse.platform.ua</module>
+
+ <module>rt.equinox.bundles</module>
+
+ <module>rt.equinox.framework</module>
+
+ <module>rt.equinox.p2</module>
+
+ <module>FROMCVS/org.eclipse.cvs/pom.xml</module>
+ <module>FROMCVS/org.eclipse.cvs-feature/pom.xml</module>
+ <module>FROMCVS/org.eclipse.platform-feature/pom.xml</module>
+ <module>FROMCVS/org.eclipse.sdk-feature/features/org.eclipse.help-feature/pom.xml</module>
+ <module>FROMCVS/org.eclipse.sdk-feature/plugins/org.eclipse.rcp/pom.xml</module>
+ <module>FROMCVS/org.eclipse.sdk-feature/features/org.eclipse.rcp/pom.xml</module>
+ <module>FROMCVS/org.eclipse.sdk-feature/features/org.eclipse.sdk/pom.xml</module>
+ <module>FROMCVS/org.eclipse.test.performance/pom.xml</module>
+
+ <module>TMP/org.eclipse.help.source/pom.xml</module>
+ <module>TMP/org.eclipse.platform.source/pom.xml</module>
+ <module>TMP/org.eclipse.cvs.source/pom.xml</module>
+ <module>TMP/org.eclipse.jdt.source/pom.xml</module>
+ <module>TMP/org.eclipse.pde.source/pom.xml</module>
+ <module>TMP/org.eclipse.sdk.epp/pom.xml</module>
+ </modules>
+</project>

Back to the top