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

Latest version of the ecf.rmap file

Revision as of 00:06, 19 January 2010 by Tkubaska.ieee.org (Talk | contribs)

Return to ecf.rmap

<?xml version="1.0" encoding="UTF-8"?>
<rmap
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns="http://www.eclipse.org/buckminster/RMap-1.0"
xmlns:bc="http://www.eclipse.org/buckminster/Common-1.0"
xmlns:mp="http://www.eclipse.org/buckminster/MavenProvider-1.0"
xmlns:pmp="http://www.eclipse.org/buckminster/PDEMapProvider-1.0">


<!-- declare the search path: org.eclipse -->
<searchPath name="org.eclipse">
<!-- declare the provider for eclipse.import -->
<provider readerType="eclipse.import" componentTypes="osgi.bundle,eclipse.feature,buckminster" mutable="false" source="false">
<uri format="http://rsync.osuosl.org/pub/eclipse/eclipse/updates/3.5/?importType=binary"/>
</provider>

<!-- declare the provider PDEMapProvider -->
<provider xsi:type="pmp:PDEMapProvider" readerType="cvs" componentTypes="osgi.bundle,eclipse.feature" mutable="false" source="true">
<uri format=":pserver:anonymous@dev.eclipse.org:/cvsroot/eclipse,org.eclipse.releng/maps">
<bc:propertyRef key="buckminster.component" />
</uri>
</provider>
</searchPath>

<!-- declare the search path: org.eclipse.emf do we use this?-->
<searchPath name="org.eclipse.emf">
<!-- declare the provider eclipse.import -->
<provider readerType="eclipse.import" componentTypes="osgi.bundle,eclipse.feature,buckminster" mutable="false" source="false">
<uri format="http://rsync.osuosl.org/pub/eclipse/modeling/emf/updates/releases?importType=binary"/>
</provider>

<!-- declare the provider PDEMapProvider -->
<provider xsi:type="pmp:PDEMapProvider" readerType="cvs" componentTypes="osgi.bundle,eclipse.feature" mutabl e="false" source="true">
<uri format=
":pserver:anonymous@dev.eclipse.org:/cvsroot/modeling,org.eclipse.emf/org.eclipse.emf.releng/maps">
<bc:propertyRef key="buckminster.component" />
</uri>
</provider>
</searchPath>

<!-- declare the search path: org.eclipse.ecf -->
<searchPath name="org.eclipse.ecf">
<!-- declare the provider local -->
<provider readerType="local" componentTypes="osgi.bundle,eclipse.feature" mutable="true" source="true">
<uri format="file:{0}/{1}/">
<bc:propertyRef key="projectsPath" />
<bc:propertyRef key="buckminster.component" />
</uri>
</provider>
</searchPath>

<!-- declare the search path: org.pluginbuilder -->
<searchPath name="org.pluginbuilder">
<!-- declare the provider eclipse.import -->
<provider readerType="eclipse.import" componentTypes="osgi.bundle,eclipse.feature,buckminster" mutable="false" source="false">
<uri format="http://self-3-4.pluginbuilder.org/nightly/p2-updateSite/?importType=binary"/>
</provider>
</searchPath>

<!-- declare the search path: org.eclipse.swtbot -->
<searchPath name="org.eclipse.swtbot">
<!-- declare the provider eclipse.import -->
<provider readerType="eclipse.import" componentTypes="osgi.bundle,eclipse.feature,buckminster" mutable="false" source="false">
<uri format="http://rsync.osuosl.org/pub/eclipse/technology/swtbot/galileo/dev-build/update-site/?importType=binary"/>
</provider>
</searchPath>

<!-- declare the search path: default -->
<searchPath name="default">
<!-- declare the provider eclipse.import -->
<provider readerType="eclipse.import" componentTypes="osgi.bundle" mutable="false" source="false">
<uri format=
"http://rsync.osuosl.org/pub/eclipse/tools/orbit/downloads/drops/S20090911225403/updateSite/?importType=binary"/>
</provider>

<!-- declare the provider PDEMapProvider -->
<provider xsi:type="pmp:PDEMapProvider" readerType="cvs" componentTypes="osgi.bundle,eclipse.feature" mutable="false" source="true">
<uri format=
":pserver:anonymous@dev.eclipse.org:/cvsroot/tools,org.eclipse.orbit/org.eclipse.orbit.releng/maps">
<bc:propertyRef key="buckminster.component" />
</uri>
</provider>
</searchPath>

<!--return to rmap discussion -->
<!--below order does matter!!! -->

<!-- ECF -->
<locator searchPathRef="org.eclipse.ecf" pattern="^ch\.ethz\.iks(\..+)?" />
<locator searchPathRef="org.eclipse.ecf" pattern="^org\.eclipse\.ecf(\..+)?" />
<locator searchPathRef="org.eclipse.ecf" pattern="^org\.eclipse\.team\.ecf(\..+)?" />
<locator searchPathRef="org.eclipse.ecf" pattern="^org\.jivesoftware\.smack$" />
<locator searchPathRef="org.eclipse.ecf" pattern="^org\.json$" />

<!-- EMF -->
<locator searchPathRef="org.eclipse.emf" pattern="^org\.eclipse\.emf(\..+)?" />
<locator searchPathRef="org.eclipse.emf" pattern="^org\.eclipse\.net4j(\..+)?" />
<locator searchPathRef="org.eclipse.emf" pattern="^org\.eclipse\.xsd(\..+)?" />

<!-- SWTBot -->
<locator searchPathRef="org.eclipse.swtbot" pattern="^org\.eclipse\.swtbot(\..+)?" />
<locator searchPathRef="org.eclipse.swtbot" pattern="^org\.hamcrest(\..+)?" />
<locator searchPathRef="org.eclipse.swtbot" pattern="^org\.apache\.log4j$" />

<!-- Eclipse -->
<locator searchPathRef="org.eclipse" pattern="^org\.eclipse(\..+)?" />
<locator searchPathRef="org.eclipse" pattern="^org\.junit4?" />
<locator searchPathRef="org.eclipse" pattern="^org\.osgi(\..+)?" />
<locator searchPathRef="org.eclipse" pattern="^org\.apache\.ant?" />

<!-- PluginBuilder -->
<locator searchPathRef="org.pluginbuilder" pattern="^org\.pluginbuilder(\..+)?" />

<!-- Eclipse other (Orbit atm) -->
<locator searchPathRef="default" pattern=".*" />
</rmap>


Back to the top