-
Notifications
You must be signed in to change notification settings - Fork 197
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[Setup] Add Oomph-configuration setup for Tycho
Fixes #24 See also - https://wiki.eclipse.org/Eclipse_Oomph_Authoring#Automation_and_Specialization_with_Configurations - https://wiki.eclipse.org/Eclipse_Oomph_Authoring#Linking_to_the_Configuration
- Loading branch information
1 parent
f3fe0cd
commit be9dd0d
Showing
3 changed files
with
67 additions
and
0 deletions.
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
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,47 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<setup:Configuration | ||
xmi:version="2.0" | ||
xmlns:xmi="http://www.omg.org/XMI" | ||
xmlns:setup="http://www.eclipse.org/oomph/setup/1.0" | ||
label="Tycho Development Environment"> | ||
<annotation | ||
source="http://www.eclipse.org/oomph/setup/BrandingInfo"> | ||
<detail | ||
key="imageURI"> | ||
<value>https://www.eclipse.org/downloads/images/committers.png</value> | ||
</detail> | ||
<detail | ||
key="siteURI"> | ||
<value>https://www.eclipse.org/tycho/</value> | ||
</detail> | ||
</annotation> | ||
<installation | ||
name="tycho.dev.installation" | ||
label="Tycho Development Installation"> | ||
<productVersion | ||
href="index:/org.eclipse.setup#//@productCatalogs[name='org.eclipse.products']/@products[name='epp.package.committers']/@versions[name='latest']"/> | ||
<description>The Tycho development environment installation provides the full environment to develop for Eclipse Tycho.</description> | ||
</installation> | ||
<workspace | ||
name="tycho.dev.workspace" | ||
label="Tycho Development Workspace"> | ||
<stream | ||
href="index:/org.eclipse.setup#//@projectCatalogs[name='org.eclipse']/@projects[name='tycho']/@streams[name='master']"/> | ||
<description>The Tycho development environment workspace includes all modules and tests of Eclipse Tycho.</description> | ||
</workspace> | ||
<description> | ||
<p> | ||
The <a href="https://www.eclipse.org/tycho/"/>Tycho</a> Development Environment configuration provisions a dedicated development environment | ||
for the complete set of source projects used by <a href="https://ci.eclipse.org/tycho/">Tycho's build server</a> | ||
to produce <a href="https://repo1.maven.org/maven2/org/eclipse/tycho/">Eclipse Tycho Maven plugins</a>. | ||
</p> | ||
<p> | ||
The installation is based on the latest milestone or release candiate of the Eclipse-for-commiters. | ||
The workspace consists of all the projects from <a href="https://github.com/eclipse-tycho/tycho.git">tycho's Git Repository</a> | ||
, organized into working sets, and ready for contribution. | ||
</p> | ||
</p> | ||
Please <a href="https://wiki.eclipse.org/Eclipse_Platform_SDK_Provisioning">read the analgous tutorial instructions</a> for the Eclispe Platform SDK's configuration for more details. | ||
</p> | ||
</description> | ||
</setup:Configuration> |