Skip to main content

Notice: This Wiki is now read only and edits are no longer possible. Please see: https://gitlab.eclipse.org/eclipsefdn/helpdesk/-/wikis/Wiki-shutdown-plan for the plan.

Jump to: navigation, search

Platform-releng-addplatform

Revision as of 17:39, 27 November 2008 by Unnamed Poltroon (Talk) (New page: How to add a platform to the build For example, see https://bugs.eclipse.org/bugs/show_bug.cgi?id=256459 The fragments must be contributed by the SWT and Equinox launcher teams. For in...)

(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

How to add a platform to the build

For example, see https://bugs.eclipse.org/bugs/show_bug.cgi?id=256459

The fragments must be contributed by the SWT and Equinox launcher teams.

For instance, org.eclipse.swt.macosx.cocoa.x86_64 org.eclipse.equinox.launcher.macosx.cocoa.x86_64

Once they are available, in CVS, and have been contributed to the org.eclipse.releng/maps project, the rcp feature can be updated with the new features,

For example,

 <plugin
        id="org.eclipse.swt.cocoa.macosx.x86_64"
        os="macosx"
        ws="cocoa"
        arch="x86_64"
        download-size="0"
        install-size="0"
        version="0.0.0"
        fragment="true"
        unpack="false"/>        
<plugin
        id="org.eclipse.equinox.launcher.cocoa.macosx.x86_64"
        os="macosx"
        ws="cocoa"
        arch="x86_64"
        download-size="0"
        install-size="0"
        version="0.0.0"
        fragment="true"/>


The major changes remaining are in the org.eclipse.releng.eclipsebuilder project

You will need to update the properties to the

configs=\... macosx, cocoa, x86_64 & \ ...

archivesFormat =group,group,group-zip

Back to the top