forked from eclipse-equinox/equinox
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[Oomph-Setup] Add equinox.core configuration setup
And reference the new equinox.p2 configuration added in the eclipse-equinox/p2 repository. Additionally add a styled and drag&drop-able Oomph Configuration button to the main README. Part of eclipse-platform/eclipse.platform.releng.aggregator#2430
- Loading branch information
1 parent
19b406b
commit c9d3c80
Showing
3 changed files
with
102 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
88 changes: 88 additions & 0 deletions
88
releng/org.eclipse.equinox.releng/EquinoxCoreConfiguration.setup
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,88 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<setup:Configuration | ||
xmi:version="2.0" | ||
xmlns:xmi="http://www.omg.org/XMI" | ||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | ||
xmlns:setup="http://www.eclipse.org/oomph/setup/1.0" | ||
label="Equinox Core"> | ||
<annotation | ||
source="http://www.eclipse.org/oomph/setup/BrandingInfo"> | ||
<detail | ||
key="imageURI"> | ||
<value>https://www.eclipse.org/equinox/images/logo_small.png</value> | ||
</detail> | ||
<detail | ||
key="badgeLabel"> | ||
<value>Equinox Core</value> | ||
</detail> | ||
</annotation> | ||
<installation | ||
name="equinox.core.installation" | ||
label="Equinox Core Installation"> | ||
<setupTask | ||
xsi:type="setup:VariableTask" | ||
name="installation.id.default" | ||
value="equinox.core"/> | ||
<productVersion | ||
href="index:/org.eclipse.setup#//@productCatalogs[name='org.eclipse.applications']/@products[name='eclipse.platform.sdk']/@versions[name='latest']"/> | ||
<description>The Equinox Core installation provides the latest tools needed to work with the Eclipse Equinox's source code.</description> | ||
</installation> | ||
<workspace | ||
name="equinox.core.workspace" | ||
label="Equinox Core Workspace"> | ||
<setupTask | ||
xsi:type="setup:VariableTask" | ||
name="workspace.id.default" | ||
value="equinox-core-ws"/> | ||
<setupTask | ||
xsi:type="setup:CompoundTask" | ||
name="User Preferences"> | ||
<annotation | ||
source="http://www.eclipse.org/oomph/setup/UserPreferences"> | ||
<detail | ||
key="/instance/org.eclipse.oomph.setup.ui/showToolBarContributions"> | ||
<value>record</value> | ||
</detail> | ||
</annotation> | ||
<setupTask | ||
xsi:type="setup:CompoundTask" | ||
name="org.eclipse.oomph.setup.ui"> | ||
<setupTask | ||
xsi:type="setup:PreferenceTask" | ||
key="/instance/org.eclipse.oomph.setup.ui/showToolBarContributions" | ||
value="true"/> | ||
</setupTask> | ||
<setupTask | ||
xsi:type="setup:CompoundTask" | ||
name="org.eclipse.ui.ide"> | ||
<setupTask | ||
xsi:type="setup:PreferenceTask" | ||
key="/instance/org.eclipse.ui.ide/WORKSPACE_NAME" | ||
value="Equinox Core"/> | ||
</setupTask> | ||
</setupTask> | ||
<setupTask | ||
xsi:type="setup:VariableTask" | ||
name="eclipse.git.authentication.style" | ||
defaultValue="anonymous"/> | ||
<stream | ||
href="index:/org.eclipse.setup#//@projectCatalogs[name='org.eclipse']/@projects[name='equinox']/@projects[name='core']/@streams[name='master']"/> | ||
<stream | ||
href="index:/org.eclipse.setup#//@projectCatalogs[name='org.eclipse']/@projects[name='equinox']/@projects[name='binaries']/@streams[name='master']"/> | ||
<description>The Equinox Core workspace provides all the source code of the project.</description> | ||
</workspace> | ||
<description> | ||
<p> | ||
The <code>Equinox Core</code> configuration provisions a dedicated development environment for the complete set of projects that comprise the core of Equinox, | ||
i.e. the projects that are contained in the <a href="https://github.com/eclipse-equinox/equinox">equinox</a> repository. | ||
</p> | ||
<p> | ||
The installation is based on the latest successful integration build of the <code>Eclipse Platform SDK</code>, | ||
the PDE target platform, like the installation, is also based on the latest integration build, | ||
and the API baseline is based on the most recent release. | ||
<p> | ||
</p> | ||
Please <a href="https://wiki.eclipse.org/Eclipse_Platform_SDK_Provisioning">read the tutorial instructions</a> for more details. | ||
</p> | ||
</description> | ||
</setup:Configuration> |