Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
[buckminster-dev] Re: Buckminster - a lot of questions

And yes, the default resource map. I forgot that one. Here it is:

<?xml version="1.0" encoding="UTF-8"?>
<!--
(c) 2004-2005
Thomas Hallgren, Kenneth Olwing, Mitch Sonies
Pontus Rydin, Nils Unden, Peer Torngren
The code, documentation and other materials contained herein have been
licensed under the Eclipse Public License - v 1.0 by the individual
copyright holders listed above, as Initial Contributors under such license.
The text of such license is available at www.eclipse.org.
-->
<rm:rmap
	xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance";
	xmlns:rm="http://www.eclipse.org/buckminster/RMap-1.0";
	xmlns:bc="http://www.eclipse.org/buckminster/Common-1.0";>

	<rm:site name="default">
	</rm:site>

	<rm:searchPath name="org.eclipse.buckminster">
		<rm:provider readerType="cvs" componentType="eclipse-project" mutable="true" source="true">
<rm:uri format=":pserver:anonymous@xxxxxxxxxxxxxxx:/cvsroot/technology,org.eclipse.buckminster/{0}">
				<bc:property key="buckminster.component" />
			</rm:uri>
			<rm:versionConverter type="tag" versionComparatorType="plugin">
				<!-- Converts 1.0.0.M1sp002 to v1_0_0_M1sp002 by first converting
					all '.' to '_' and then prefixing the result with 'v'. The
					convertsion is bidirectional
				-->
				<rm:transform fromPattern="\." fromReplacement="_"
					toPattern="_" toReplacement="." />
				<rm:transform fromPattern="^(.*)$" fromReplacement="v$1"
					toPattern="^v(.*)$" toReplacement="$1" />
			</rm:versionConverter>
		</rm:provider>
	</rm:searchPath>

	<rm:searchPath name="buckminster.test">
		<rm:provider readerType="cvs" componentType="eclipse-project" mutable="true" source="true">
<rm:uri format=":pserver:anonymous@xxxxxxxxxxxxxxx:/cvsroot/technology,org.eclipse.buckminster/test/{0}">
				<bc:replace pattern="^buckminster\.test\.(.+)" replacement="$1" quotePattern="false">
					<bc:property key="buckminster.component" />
				</bc:replace>
			</rm:uri>
		</rm:provider>
	</rm:searchPath>

	<rm:searchPath name="se.tada.util">
		<rm:provider readerType="maven" componentType="maven" mutable="false" source="false">
			<rm:uri format="http://www.ibiblio.org/maven#{0}";>
<bc:replace pattern="^(se\.tada)\.util\.(.*)$" replacement="$1.tada-$2" quotePattern="false">
					<bc:property key="buckminster.component" />
				</bc:replace>
			</rm:uri>
		</rm:provider>
		<rm:provider readerType="cvs" componentType="eclipse-project" source="true" mutable="true">
			<rm:uri format=":pserver:anoncvs@xxxxxxxxxxxxxx:/cvs,tada-{0}">
				<bc:replace pattern="^se\.tada\.util\.(.*)$" replacement="$1" quotePattern="false">
					<bc:property key="buckminster.component" />
				</bc:replace>
			</rm:uri>
		</rm:provider>
	</rm:searchPath>

	<rm:searchPath name="org.apache">
		<rm:provider readerType="maven" componentType="maven" mutable="false" source="false">
			<rm:uri format="http://www.ibiblio.org/maven#{0}";>
				<bc:replace pattern="^org\.apache\.(.*)$" replacement="$1" quotePattern="false">
					<bc:property key="buckminster.component" />
				</bc:replace>
			</rm:uri>
		</rm:provider>
	</rm:searchPath>

	<rm:searchPath name="subclipse-core">
		<rm:provider readerType="svn" componentType="eclipse-project" mutable="false" source="true">
<rm:uri format="http://subclipse.tigris.org/svn/subclipse/trunk/subclipse?moduleBeforeTag&amp;moduleAfterTag#core"/>
		</rm:provider>
	</rm:searchPath>

<rm:locator searchPathRef="org.eclipse.buckminster" pattern="^org\.eclipse\.buckminster(\..+)?" /> <rm:locator searchPathRef="org.eclipse.buckminster" pattern="^org\.eclipse\.buckminster(\..+)?" />
	<rm:locator searchPathRef="buckminster.test" pattern="^buckminster\.test\..+" />
	<rm:locator searchPathRef="se.tada.util" pattern="^se\.tada\.util\..*" />
<rm:locator searchPathRef="subclipse-core" pattern="^org\.tigris\.subversion\.subclipse\.core$" />
	<rm:locator searchPathRef="org.apache" pattern="^org\.apache\..*" />

</rm:rmap>


Back to the top