Some Eclipse Foundation services are deprecated, or will be soon. Please ensure you've read this important communication.
View | Details | Raw Unified | Return to bug 376586 | Differences between
and this patch

Collapse All | Expand All

(-)a/eclipse/buildConfigs/platform.sdk/platform.product (-1 / +1 lines)
Lines 1-7 Link Here
1
<?xml version="1.0" encoding="UTF-8"?>
1
<?xml version="1.0" encoding="UTF-8"?>
2
<?pde version="3.5"?>
2
<?pde version="3.5"?>
3
3
4
<product name="Eclipse Platform SDK" uid="org.eclipse.platform.sdk" id="org.eclipse.platform.ide" application="org.eclipse.ui.ide.workbench" version="4.2.0.@qualifier@" useFeatures="true" includeLaunchers="true">
4
<product name="Eclipse Platform SDK" uid="org.eclipse.platform.sdk" id="org.eclipse.platform.ide" application="org.eclipse.ui.ide.workbench" version="4.2.0.qualifier" useFeatures="true" includeLaunchers="true">
5
5
6
   <configIni use="default">
6
   <configIni use="default">
7
   </configIni>
7
   </configIni>
(-)a/eclipse/buildConfigs/platform.sdk/pom.xml (+73 lines)
Added Link Here
1
<?xml version="1.0" encoding="UTF-8"?>
2
<!--
3
  Copyright (c) 2012 Eclipse Foundation.
4
  All rights reserved. This program and the accompanying materials
5
  are made available under the terms of the Eclipse Distribution License v1.0
6
  which accompanies this distribution, and is available at
7
  http://www.eclipse.org/org/documents/edl-v10.php
8
 
9
  Contributors:
10
     Igor Fedorenko - initial implementation
11
-->
12
13
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
14
  xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
15
  <modelVersion>4.0.0</modelVersion>
16
17
  <parent>
18
    <groupId>eclipse.platform.releng.eclipsebuilder</groupId>
19
    <artifactId>eclipse.platform.releng.eclipsebuilder</artifactId>
20
    <version>4.2.0-SNAPSHOT</version>
21
    <relativePath>../../../</relativePath>
22
  </parent>
23
24
  <artifactId>org.eclipse.platform.sdk</artifactId>
25
  <version>4.2.0-SNAPSHOT</version>
26
  <packaging>eclipse-repository</packaging>
27
28
  <!--
29
  :pserver:anonymous@dev.eclipse.org:/cvsroot/eclipse
30
31
  R4_HEAD branch of  /org.eclipse.releng.eclipsebuilder/eclipse/buildConfigs/sdk/builder
32
   -->
33
34
  <build>
35
    <plugins>
36
      <plugin>
37
        <groupId>org.eclipse.tycho</groupId>
38
        <artifactId>tycho-p2-director-plugin</artifactId>
39
        <executions>
40
          <execution>
41
            <id>materialize-products</id>
42
            <goals>
43
              <goal>materialize-products</goal>
44
            </goals>
45
            <configuration>
46
              <profile>SDKProfile</profile>
47
              <products>
48
                <product>
49
                  <id>org.eclipse.platform.sdk</id>
50
                  <rootFolder>eclipse</rootFolder>
51
                </product>
52
              </products>
53
            </configuration>
54
          </execution>
55
          <execution>
56
            <id>archive-products</id>
57
            <goals>
58
              <goal>archive-products</goal>
59
            </goals>
60
            <configuration>
61
              <formats>
62
                <win32>zip</win32>
63
                <linux>tar.gz</linux>
64
                <macosx>tar.gz</macosx>
65
              </formats>
66
            </configuration>
67
          </execution>
68
        </executions>
69
      </plugin>
70
    </plugins>
71
  </build>
72
73
</project>
(-)a/eclipse/buildConfigs/platform/platform.product (-2 / +2 lines)
Lines 1-7 Link Here
1
<?xml version="1.0" encoding="UTF-8"?>
1
<?xml version="1.0" encoding="UTF-8"?>
2
<?pde version="3.5"?>
2
<?pde version="3.5"?>
3
3
4
<product name="Eclipse Platform" id="org.eclipse.platform.ide" application="org.eclipse.ui.ide.workbench" version="4.2.0.@qualifier@" useFeatures="true" includeLaunchers="false">
4
<product uid="org.eclipse.platform.ide" name="Eclipse Platform" id="org.eclipse.platform.ide" application="org.eclipse.ui.ide.workbench" version="4.2.0.qualifier" useFeatures="true" includeLaunchers="false">
5
5
6
   <configIni use="default">
6
   <configIni use="default">
7
   </configIni>
7
   </configIni>
Lines 170-176 Java and all Java-based trademarks are trademarks of Oracle Corporation in the U Link Here
170
      <plugin id="org.eclipse.equinox.p2.reconciler.dropins" autoStart="true" startLevel="4" />
170
      <plugin id="org.eclipse.equinox.p2.reconciler.dropins" autoStart="true" startLevel="4" />
171
      <plugin id="org.eclipse.equinox.simpleconfigurator" autoStart="true" startLevel="1" />
171
      <plugin id="org.eclipse.equinox.simpleconfigurator" autoStart="true" startLevel="1" />
172
      <plugin id="org.eclipse.update.configurator" autoStart="true" startLevel="3" />
172
      <plugin id="org.eclipse.update.configurator" autoStart="true" startLevel="3" />
173
      <property name="eclipse.buildId" value="@qualifier@" />
173
      <property name="eclipse.buildId" value="qualifier" />
174
      <property name="org.eclipse.update.reconcile" value="false" />
174
      <property name="org.eclipse.update.reconcile" value="false" />
175
      <property name="osgi.bundles.defaultStartLevel" value="4" />
175
      <property name="osgi.bundles.defaultStartLevel" value="4" />
176
   </configurations>
176
   </configurations>
(-)a/eclipse/buildConfigs/platform/pom.xml (+73 lines)
Added Link Here
1
<?xml version="1.0" encoding="UTF-8"?>
2
<!--
3
  Copyright (c) 2012 Eclipse Foundation.
4
  All rights reserved. This program and the accompanying materials
5
  are made available under the terms of the Eclipse Distribution License v1.0
6
  which accompanies this distribution, and is available at
7
  http://www.eclipse.org/org/documents/edl-v10.php
8
 
9
  Contributors:
10
     Igor Fedorenko - initial implementation
11
-->
12
13
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
14
  xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
15
  <modelVersion>4.0.0</modelVersion>
16
17
  <parent>
18
    <groupId>eclipse.platform.releng.eclipsebuilder</groupId>
19
    <artifactId>eclipse.platform.releng.eclipsebuilder</artifactId>
20
    <version>4.2.0-SNAPSHOT</version>
21
    <relativePath>../../../</relativePath>
22
  </parent>
23
24
  <artifactId>org.eclipse.platform.ide</artifactId>
25
  <version>4.2.0-SNAPSHOT</version>
26
  <packaging>eclipse-repository</packaging>
27
28
  <!--
29
  :pserver:anonymous@dev.eclipse.org:/cvsroot/eclipse
30
31
  R4_HEAD branch of  /org.eclipse.releng.eclipsebuilder/eclipse/buildConfigs/sdk/builder
32
   -->
33
34
  <build>
35
    <plugins>
36
      <plugin>
37
        <groupId>org.eclipse.tycho</groupId>
38
        <artifactId>tycho-p2-director-plugin</artifactId>
39
        <executions>
40
          <execution>
41
            <id>materialize-products</id>
42
            <goals>
43
              <goal>materialize-products</goal>
44
            </goals>
45
            <configuration>
46
              <profile>SDKProfile</profile>
47
              <products>
48
                <product>
49
                  <id>org.eclipse.platform.ide</id>
50
                  <rootFolder>eclipse</rootFolder>
51
                </product>
52
              </products>
53
            </configuration>
54
          </execution>
55
          <execution>
56
            <id>archive-products</id>
57
            <goals>
58
              <goal>archive-products</goal>
59
            </goals>
60
            <configuration>
61
              <formats>
62
                <win32>zip</win32>
63
                <linux>tar.gz</linux>
64
                <macosx>tar.gz</macosx>
65
              </formats>
66
            </configuration>
67
          </execution>
68
        </executions>
69
      </plugin>
70
    </plugins>
71
  </build>
72
73
</project>
(-)a/eclipse/buildConfigs/rcp.config/build.properties (-39 / +39 lines)
Lines 9-64 Link Here
9
#     IBM Corporation - initial API and implementation
9
#     IBM Corporation - initial API and implementation
10
###############################################################################
10
###############################################################################
11
11
12
root.permissions.755=eclipse
12
#root.permissions.755=eclipse
13
root.win32.win32.x86=absolute:${buildDirectory}/features/org.eclipse.equinox.executable/bin/win32/win32/x86
13
#root.win32.win32.x86=absolute:${buildDirectory}/features/org.eclipse.equinox.executable/bin/win32/win32/x86
14
root.win32.win32.x86_64=absolute:${buildDirectory}/features/org.eclipse.equinox.executable/bin/win32/win32/x86_64
14
#root.win32.win32.x86_64=absolute:${buildDirectory}/features/org.eclipse.equinox.executable/bin/win32/win32/x86_64
15
root.aix.motif.ppc=absolute:${buildDirectory}/features/org.eclipse.equinox.executable/bin/motif/aix/ppc
15
#root.aix.motif.ppc=absolute:${buildDirectory}/features/org.eclipse.equinox.executable/bin/motif/aix/ppc
16
#root.hpux.motif.PA_RISC=absolute:${buildDirectory}/features/org.eclipse.equinox.executable/bin/motif/hpux/PA_RISC
16
#root.hpux.motif.PA_RISC=absolute:${buildDirectory}/features/org.eclipse.equinox.executable/bin/motif/hpux/PA_RISC
17
root.hpux.motif.ia64_32=absolute:${buildDirectory}/features/org.eclipse.equinox.executable/bin/motif/hpux/ia64_32
17
#root.hpux.motif.ia64_32=absolute:${buildDirectory}/features/org.eclipse.equinox.executable/bin/motif/hpux/ia64_32
18
root.solaris.gtk.sparc=absolute:${buildDirectory}/features/org.eclipse.equinox.executable/bin/gtk/solaris/sparc
18
#root.solaris.gtk.sparc=absolute:${buildDirectory}/features/org.eclipse.equinox.executable/bin/gtk/solaris/sparc
19
root.solaris.gtk.x86=absolute:${buildDirectory}/features/org.eclipse.equinox.executable/bin/gtk/solaris/x86
19
#root.solaris.gtk.x86=absolute:${buildDirectory}/features/org.eclipse.equinox.executable/bin/gtk/solaris/x86
20
20
21
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
21
#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
22
root.linux.gtk.x86.permissions.755=*.so*
22
#root.linux.gtk.x86.permissions.755=*.so*
23
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
23
#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
24
root.linux.gtk.ppc64.permissions.755=*.so*
24
#root.linux.gtk.ppc64.permissions.755=*.so*
25
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
25
#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
26
root.linux.gtk.x86_64.permissions.755=*.so*
26
#root.linux.gtk.x86_64.permissions.755=*.so*
27
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
27
#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
28
root.linux.gtk.s390x.permissions.755=*.so*
28
#root.linux.gtk.s390x.permissions.755=*.so*
29
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
29
#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
30
root.linux.gtk.s390.permissions.755=*.so*
30
#root.linux.gtk.s390.permissions.755=*.so*
31
31
32
#root.linux.gtk.ia64=absolute:${buildDirectory}/features/org.eclipse.equinox.executable/bin/gtk/linux/ia64
32
#root.linux.gtk.ia64=absolute:${buildDirectory}/features/org.eclipse.equinox.executable/bin/gtk/linux/ia64
33
# Need to be fixed to reflect eventual change into feature.xml
33
# Need to be fixed to reflect eventual change into feature.xml
34
#root.qnx.photon.x86=absolute:${buildDirectory}/features/org.eclipse.equinox.executable/bin/photon/qnx/x86
34
#root.qnx.photon.x86=absolute:${buildDirectory}/features/org.eclipse.equinox.executable/bin/photon/qnx/x86
35
35
36
root.linux.motif.x86=absolute:${buildDirectory}/features/org.eclipse.platform/about_files/linux.motif.x86,absolute:${buildDirectory}/features/org.eclipse.equinox.executable/bin/motif/linux/x86,absolue:file:${buildDirectory}/features/plugins/org.eclipse.swt.motif.linux.x86/libXm.so.2
36
#root.linux.motif.x86=absolute:${buildDirectory}/features/org.eclipse.platform/about_files/linux.motif.x86,absolute:${buildDirectory}/features/org.eclipse.equinox.executable/bin/motif/linux/x86,absolue:file:${buildDirectory}/features/plugins/org.eclipse.swt.motif.linux.x86/libXm.so.2
37
root.linux.motif.x86.permissions.755=*.so*
37
#root.linux.motif.x86.permissions.755=*.so*
38
38
39
root.macosx.carbon.ppc.folder.Eclipse.app/Contents/MacOS=absolute:file:${buildDirectory}/features/org.eclipse.equinox.executable/bin/carbon/macosx/ppc/Eclipse.app/Contents/MacOS/eclipse
39
#root.macosx.carbon.ppc.folder.Eclipse.app/Contents/MacOS=absolute:file:${buildDirectory}/features/org.eclipse.equinox.executable/bin/carbon/macosx/ppc/Eclipse.app/Contents/MacOS/eclipse
40
root.macosx.carbon.ppc.folder.Eclipse.app/Contents/Resources=absolute:${buildDirectory}/features/org.eclipse.equinox.executable/bin/carbon/macosx/ppc/Eclipse.app/Contents/Resources
40
#root.macosx.carbon.ppc.folder.Eclipse.app/Contents/Resources=absolute:${buildDirectory}/features/org.eclipse.equinox.executable/bin/carbon/macosx/ppc/Eclipse.app/Contents/Resources
41
root.macosx.carbon.ppc.folder.Eclipse.app/Contents=absolute:file:${buildDirectory}/features/org.eclipse.equinox.executable/bin/carbon/macosx/ppc/Eclipse.app/Contents/Info.plist
41
#root.macosx.carbon.ppc.folder.Eclipse.app/Contents=absolute:file:${buildDirectory}/features/org.eclipse.equinox.executable/bin/carbon/macosx/ppc/Eclipse.app/Contents/Info.plist
42
root.macosx.carbon.ppc.permissions.755=Eclipse.app/Contents/MacOS/eclipse,Eclipse.app/Contents/MacOS/java_swt
42
#root.macosx.carbon.ppc.permissions.755=Eclipse.app/Contents/MacOS/eclipse,Eclipse.app/Contents/MacOS/java_swt
43
root.macosx.carbon.ppc.link=Eclipse.app/Contents/MacOS/eclipse,eclipse
43
#root.macosx.carbon.ppc.link=Eclipse.app/Contents/MacOS/eclipse,eclipse
44
44
45
root.macosx.carbon.x86.folder.Eclipse.app/Contents/MacOS=absolute:file:${buildDirectory}/features/org.eclipse.equinox.executable/bin/carbon/macosx/x86/Eclipse.app/Contents/MacOS/eclipse
45
#root.macosx.carbon.x86.folder.Eclipse.app/Contents/MacOS=absolute:file:${buildDirectory}/features/org.eclipse.equinox.executable/bin/carbon/macosx/x86/Eclipse.app/Contents/MacOS/eclipse
46
root.macosx.carbon.x86.folder.Eclipse.app/Contents/Resources=absolute:${buildDirectory}/features/org.eclipse.equinox.executable/bin/carbon/macosx/x86/Eclipse.app/Contents/Resources
46
#root.macosx.carbon.x86.folder.Eclipse.app/Contents/Resources=absolute:${buildDirectory}/features/org.eclipse.equinox.executable/bin/carbon/macosx/x86/Eclipse.app/Contents/Resources
47
root.macosx.carbon.x86.folder.Eclipse.app/Contents=absolute:file:${buildDirectory}/features/org.eclipse.equinox.executable/bin/carbon/macosx/x86/Eclipse.app/Contents/Info.plist
47
#root.macosx.carbon.x86.folder.Eclipse.app/Contents=absolute:file:${buildDirectory}/features/org.eclipse.equinox.executable/bin/carbon/macosx/x86/Eclipse.app/Contents/Info.plist
48
root.macosx.carbon.x86.permissions.755=Eclipse.app/Contents/MacOS/eclipse,Eclipse.app/Contents/MacOS/java_swt
48
#root.macosx.carbon.x86.permissions.755=Eclipse.app/Contents/MacOS/eclipse,Eclipse.app/Contents/MacOS/java_swt
49
root.macosx.carbon.x86.link=Eclipse.app/Contents/MacOS/eclipse,eclipse
49
#root.macosx.carbon.x86.link=Eclipse.app/Contents/MacOS/eclipse,eclipse
50
50
51
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
51
#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
52
root.macosx.cocoa.x86.folder.Eclipse.app/Contents/Resources=absolute:${buildDirectory}/features/org.eclipse.equinox.executable/bin/cocoa/macosx/x86/Eclipse.app/Contents/Resources
52
#root.macosx.cocoa.x86.folder.Eclipse.app/Contents/Resources=absolute:${buildDirectory}/features/org.eclipse.equinox.executable/bin/cocoa/macosx/x86/Eclipse.app/Contents/Resources
53
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
53
#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
54
root.macosx.cocoa.x86.permissions.755=Eclipse.app/Contents/MacOS/eclipse,Eclipse.app/Contents/MacOS/java_swt
54
#root.macosx.cocoa.x86.permissions.755=Eclipse.app/Contents/MacOS/eclipse,Eclipse.app/Contents/MacOS/java_swt
55
root.macosx.cocoa.x86.link=Eclipse.app/Contents/MacOS/eclipse,eclipse
55
#root.macosx.cocoa.x86.link=Eclipse.app/Contents/MacOS/eclipse,eclipse
56
56
57
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
57
#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
58
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
58
#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
59
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
59
#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
60
root.macosx.cocoa.x86_64.permissions.755=Eclipse.app/Contents/MacOS/eclipse,Eclipse.app/Contents/MacOS/java_swt
60
#root.macosx.cocoa.x86_64.permissions.755=Eclipse.app/Contents/MacOS/eclipse,Eclipse.app/Contents/MacOS/java_swt
61
root.macosx.cocoa.x86_64.link=Eclipse.app/Contents/MacOS/eclipse,eclipse
61
#root.macosx.cocoa.x86_64.link=Eclipse.app/Contents/MacOS/eclipse,eclipse
62
62
63
63
64
64
(-)a/eclipse/buildConfigs/rcp.config/feature.xml (-1 / +1 lines)
Lines 2-8 Link Here
2
<feature
2
<feature
3
      id="org.eclipse.rcp.configuration"
3
      id="org.eclipse.rcp.configuration"
4
      label="%featureName"
4
      label="%featureName"
5
      version="1.0.0.@qualifier@"
5
      version="1.0.0.qualifier"
6
      provider-name="%providerName">
6
      provider-name="%providerName">
7
7
8
   <description>
8
   <description>
(-)a/eclipse/buildConfigs/rcp.config/pom.xml (+19 lines)
Added Link Here
1
<?xml version="1.0" encoding="UTF-8"?>
2
<project
3
  xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"
4
  xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
5
  <modelVersion>4.0.0</modelVersion>
6
7
  <parent>
8
    <groupId>eclipse.platform.releng.eclipsebuilder</groupId>
9
    <artifactId>eclipse.platform.releng.eclipsebuilder</artifactId>
10
    <version>4.2.0-SNAPSHOT</version>
11
    <relativePath>../../../</relativePath>
12
  </parent>
13
14
  <groupId>org.eclipse.rcp.configuration</groupId>
15
  <artifactId>org.eclipse.rcp.configuration</artifactId>
16
  <version>1.0.0-SNAPSHOT</version>
17
  <packaging>eclipse-feature</packaging>
18
19
</project>
(-)a/eclipse/buildConfigs/rcp.sdk/pom.xml (+73 lines)
Added Link Here
1
<?xml version="1.0" encoding="UTF-8"?>
2
<!--
3
  Copyright (c) 2012 Eclipse Foundation.
4
  All rights reserved. This program and the accompanying materials
5
  are made available under the terms of the Eclipse Distribution License v1.0
6
  which accompanies this distribution, and is available at
7
  http://www.eclipse.org/org/documents/edl-v10.php
8
 
9
  Contributors:
10
     Igor Fedorenko - initial implementation
11
-->
12
13
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
14
  xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
15
  <modelVersion>4.0.0</modelVersion>
16
17
  <parent>
18
    <groupId>eclipse.platform.releng.eclipsebuilder</groupId>
19
    <artifactId>eclipse.platform.releng.eclipsebuilder</artifactId>
20
    <version>4.2.0-SNAPSHOT</version>
21
    <relativePath>../../../</relativePath>
22
  </parent>
23
24
  <artifactId>org.eclipse.rcp.sdk.id</artifactId>
25
  <version>4.1.0-SNAPSHOT</version>
26
  <packaging>eclipse-repository</packaging>
27
28
  <!--
29
  :pserver:anonymous@dev.eclipse.org:/cvsroot/eclipse
30
31
  R4_HEAD branch of  /org.eclipse.releng.eclipsebuilder/eclipse/buildConfigs/sdk/builder
32
   -->
33
34
  <build>
35
    <plugins>
36
      <plugin>
37
        <groupId>org.eclipse.tycho</groupId>
38
        <artifactId>tycho-p2-director-plugin</artifactId>
39
        <executions>
40
          <execution>
41
            <id>materialize-products</id>
42
            <goals>
43
              <goal>materialize-products</goal>
44
            </goals>
45
            <configuration>
46
              <profile>SDKProfile</profile>
47
              <products>
48
                <product>
49
                  <id>org.eclipse.rcp.sdk.id</id>
50
                  <rootFolder>eclipse</rootFolder>
51
                </product>
52
              </products>
53
            </configuration>
54
          </execution>
55
          <execution>
56
            <id>archive-products</id>
57
            <goals>
58
              <goal>archive-products</goal>
59
            </goals>
60
            <configuration>
61
              <formats>
62
                <win32>zip</win32>
63
                <linux>tar.gz</linux>
64
                <macosx>tar.gz</macosx>
65
              </formats>
66
            </configuration>
67
          </execution>
68
        </executions>
69
      </plugin>
70
    </plugins>
71
  </build>
72
73
</project>
(-)a/eclipse/buildConfigs/rcp.sdk/rcp.product (-1 / +1 lines)
Lines 1-7 Link Here
1
<?xml version="1.0" encoding="UTF-8"?>
1
<?xml version="1.0" encoding="UTF-8"?>
2
<?pde version="3.5"?>
2
<?pde version="3.5"?>
3
3
4
<product name="Eclipse RCP SDK" uid="org.eclipse.rcp.sdk.id" version="4.1.0.@qualifier@" useFeatures="true" includeLaunchers="true">
4
<product name="Eclipse RCP SDK" uid="org.eclipse.rcp.sdk.id" version="4.1.0.qualifier" useFeatures="true" includeLaunchers="true">
5
5
6
   <configIni use="default">
6
   <configIni use="default">
7
   </configIni>
7
   </configIni>
(-)a/eclipse/buildConfigs/rcp/pom.xml (+73 lines)
Added Link Here
1
<?xml version="1.0" encoding="UTF-8"?>
2
<!--
3
  Copyright (c) 2012 Eclipse Foundation.
4
  All rights reserved. This program and the accompanying materials
5
  are made available under the terms of the Eclipse Distribution License v1.0
6
  which accompanies this distribution, and is available at
7
  http://www.eclipse.org/org/documents/edl-v10.php
8
 
9
  Contributors:
10
     Igor Fedorenko - initial implementation
11
-->
12
13
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
14
  xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
15
  <modelVersion>4.0.0</modelVersion>
16
17
  <parent>
18
    <groupId>eclipse.platform.releng.eclipsebuilder</groupId>
19
    <artifactId>eclipse.platform.releng.eclipsebuilder</artifactId>
20
    <version>4.2.0-SNAPSHOT</version>
21
    <relativePath>../../../</relativePath>
22
  </parent>
23
24
  <artifactId>org.eclipse.rcp.id</artifactId>
25
  <version>4.2.0-SNAPSHOT</version>
26
  <packaging>eclipse-repository</packaging>
27
28
  <!--
29
  :pserver:anonymous@dev.eclipse.org:/cvsroot/eclipse
30
31
  R4_HEAD branch of  /org.eclipse.releng.eclipsebuilder/eclipse/buildConfigs/sdk/builder
32
   -->
33
34
  <build>
35
    <plugins>
36
      <plugin>
37
        <groupId>org.eclipse.tycho</groupId>
38
        <artifactId>tycho-p2-director-plugin</artifactId>
39
        <executions>
40
          <execution>
41
            <id>materialize-products</id>
42
            <goals>
43
              <goal>materialize-products</goal>
44
            </goals>
45
            <configuration>
46
              <profile>SDKProfile</profile>
47
              <products>
48
                <product>
49
                  <id>org.eclipse.rcp.id</id>
50
                  <rootFolder>eclipse</rootFolder>
51
                </product>
52
              </products>
53
            </configuration>
54
          </execution>
55
          <execution>
56
            <id>archive-products</id>
57
            <goals>
58
              <goal>archive-products</goal>
59
            </goals>
60
            <configuration>
61
              <formats>
62
                <win32>zip</win32>
63
                <linux>tar.gz</linux>
64
                <macosx>tar.gz</macosx>
65
              </formats>
66
            </configuration>
67
          </execution>
68
        </executions>
69
      </plugin>
70
    </plugins>
71
  </build>
72
73
</project>
(-)a/eclipse/buildConfigs/rcp/rcp.product (-1 / +1 lines)
Lines 1-7 Link Here
1
<?xml version="1.0" encoding="UTF-8"?>
1
<?xml version="1.0" encoding="UTF-8"?>
2
<?pde version="3.5"?>
2
<?pde version="3.5"?>
3
3
4
<product name="Eclipse RCP" uid="org.eclipse.rcp.id" version="4.2.0.@qualifier@" useFeatures="true" includeLaunchers="true">
4
<product name="Eclipse RCP" uid="org.eclipse.rcp.id" version="4.2.0.qualifier" useFeatures="true" includeLaunchers="true">
5
5
6
   <configIni use="default">
6
   <configIni use="default">
7
   </configIni>
7
   </configIni>
(-)a/eclipse/buildConfigs/sdk/builder/pom.xml (+73 lines)
Added Link Here
1
<?xml version="1.0" encoding="UTF-8"?>
2
<!--
3
  Copyright (c) 2012 Eclipse Foundation.
4
  All rights reserved. This program and the accompanying materials
5
  are made available under the terms of the Eclipse Distribution License v1.0
6
  which accompanies this distribution, and is available at
7
  http://www.eclipse.org/org/documents/edl-v10.php
8
 
9
  Contributors:
10
     Igor Fedorenko - initial implementation
11
-->
12
13
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
14
  xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
15
  <modelVersion>4.0.0</modelVersion>
16
17
  <parent>
18
    <groupId>eclipse.platform.releng.eclipsebuilder</groupId>
19
    <artifactId>eclipse.platform.releng.eclipsebuilder</artifactId>
20
    <version>4.2.0-SNAPSHOT</version>
21
    <relativePath>../../../../</relativePath>
22
  </parent>
23
24
  <artifactId>org.eclipse.sdk.epp</artifactId>
25
  <version>4.2.0-SNAPSHOT</version>
26
  <packaging>eclipse-repository</packaging>
27
28
  <!--
29
  :pserver:anonymous@dev.eclipse.org:/cvsroot/eclipse
30
31
  R4_HEAD branch of  /org.eclipse.releng.eclipsebuilder/eclipse/buildConfigs/sdk/builder
32
   -->
33
34
  <build>
35
    <plugins>
36
      <plugin>
37
        <groupId>org.eclipse.tycho</groupId>
38
        <artifactId>tycho-p2-director-plugin</artifactId>
39
        <executions>
40
          <execution>
41
            <id>materialize-products</id>
42
            <goals>
43
              <goal>materialize-products</goal>
44
            </goals>
45
            <configuration>
46
              <profile>SDKProfile</profile>
47
              <products>
48
                <product>
49
                  <id>org.eclipse.sdk.epp</id>
50
                  <rootFolder>eclipse</rootFolder>
51
                </product>
52
              </products>
53
            </configuration>
54
          </execution>
55
          <execution>
56
            <id>archive-products</id>
57
            <goals>
58
              <goal>archive-products</goal>
59
            </goals>
60
            <configuration>
61
              <formats>
62
                <win32>zip</win32>
63
                <linux>tar.gz</linux>
64
                <macosx>tar.gz</macosx>
65
              </formats>
66
            </configuration>
67
          </execution>
68
        </executions>
69
      </plugin>
70
    </plugins>
71
  </build>
72
73
</project>
(-)a/eclipse/buildConfigs/sdk/builder/sdk.product (-2 / +2 lines)
Lines 1-7 Link Here
1
<?xml version="1.0" encoding="UTF-8"?>
1
<?xml version="1.0" encoding="UTF-8"?>
2
<?pde version="3.5"?>
2
<?pde version="3.5"?>
3
3
4
<product name="Eclipse SDK" id="org.eclipse.sdk.ide" application="org.eclipse.ui.ide.workbench" version="4.2.0.@qualifier@" useFeatures="true" includeLaunchers="true">
4
<product uid="org.eclipse.sdk.epp" name="Eclipse SDK" id="org.eclipse.sdk.ide" application="org.eclipse.ui.ide.workbench" version="4.2.0.qualifier" useFeatures="true" includeLaunchers="true">
5
5
6
   <configIni use="default">
6
   <configIni use="default">
7
   </configIni>
7
   </configIni>
Lines 172-178 Java and all Java-based trademarks are trademarks of Oracle Corporation in the U Link Here
172
      <plugin id="org.eclipse.equinox.p2.reconciler.dropins" autoStart="true" startLevel="4" />
172
      <plugin id="org.eclipse.equinox.p2.reconciler.dropins" autoStart="true" startLevel="4" />
173
      <plugin id="org.eclipse.equinox.simpleconfigurator" autoStart="true" startLevel="1" />
173
      <plugin id="org.eclipse.equinox.simpleconfigurator" autoStart="true" startLevel="1" />
174
      <plugin id="org.eclipse.update.configurator" autoStart="true" startLevel="3" />
174
      <plugin id="org.eclipse.update.configurator" autoStart="true" startLevel="3" />
175
      <property name="eclipse.buildId" value="@qualifier@" />
175
      <property name="eclipse.buildId" value="${unqualifiedVersion}.${buildQualifier}" />
176
      <property name="org.eclipse.update.reconcile" value="false" />
176
      <property name="org.eclipse.update.reconcile" value="false" />
177
      <property name="osgi.bundles.defaultStartLevel" value="4" />
177
      <property name="osgi.bundles.defaultStartLevel" value="4" />
178
   </configurations>
178
   </configurations>
(-)a/pom.xml (+39 lines)
Added Link Here
1
<?xml version="1.0" encoding="UTF-8"?>
2
<!--
3
  Copyright (c) 2012 Eclipse Foundation.
4
  All rights reserved. This program and the accompanying materials
5
  are made available under the terms of the Eclipse Distribution License v1.0
6
  which accompanies this distribution, and is available at
7
  http://www.eclipse.org/org/documents/edl-v10.php
8
 
9
  Contributors:
10
     Igor Fedorenko - initial implementation
11
-->
12
13
<project
14
  xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"
15
  xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
16
  <modelVersion>4.0.0</modelVersion>
17
18
  <parent>
19
    <groupId>org.eclipse</groupId>
20
    <artifactId>eclipse-parent</artifactId>
21
    <version>1.0.0-SNAPSHOT</version>
22
    <relativePath>../eclipse-parent</relativePath>
23
  </parent>
24
25
  <groupId>eclipse.platform.releng.eclipsebuilder</groupId>
26
  <artifactId>eclipse.platform.releng.eclipsebuilder</artifactId>
27
  <version>4.2.0-SNAPSHOT</version>
28
  <packaging>pom</packaging>
29
30
  <modules>
31
    <module>eclipse/buildConfigs/platform</module>
32
    <module>eclipse/buildConfigs/platform.sdk</module>
33
    <module>eclipse/buildConfigs/rcp</module>
34
    <module>eclipse/buildConfigs/rcp.config</module>
35
    <module>eclipse/buildConfigs/rcp.sdk</module>
36
    <module>eclipse/buildConfigs/sdk/builder</module>
37
  </modules>
38
39
</project>

Return to bug 376586