Hi,
I have a target platform containing many bundles. One of that bundle is modified and stored on my file system. How can I tell the Buckminster to use this one instead of the original from the target platform?
My site.rmap file:
<?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:pp="http://www.eclipse.org/buckminster/PDEMapProvider-1.0">
<searchPath name="resources">
<provider readerType="local" componentTypes="osgi.bundle,eclipse.feature"
mutable="true" source="true">
<uri format="file:///{0}/{1}/">
<bc:propertyRef key="workspace.root" />
<bc:propertyRef key="buckminster.component" />
</uri>
</provider>
</searchPath>
<locator searchPathRef="resources"/>
</rmap>
My cquery"
<?xml version="1.0" encoding="UTF-8"?>
<cq:componentQuery xmlns:cq="http://www.eclipse.org/buckminster/CQuery-1.0" resourceMap="site.rmap">
<cq:rootRequest name="cz.tigra.spl.site" componentType="eclipse.feature"/>
<cq:advisorNode namePattern="cz.tigra.spl*" componentType="osgi.bundle" allowCircularDependency="true"/>
<cq:advisorNode namePattern="cz.tigra.spl.client.feature" componentType="eclipse.feature" allowCircularDependency="true"/>
</cq:componentQuery>
Thanks