I am trying to resolve liquibase-osgi from maven cetral repository. I got my rmap configured
<rm:searchPath name="maven-central">
<rm:provider xsi:type="mp:MavenProvider" componentTypes="maven" readerType="maven2" source="false" mutable="false">
<rm:uri format="http://central.maven.org/maven2/" />
<mp:mappings>
<mp:entry name="liquibase-osgi" artifactId="liquibase-osgi" groupId="org.liquibase"/>
</mp:mappings>
<mp:scopes>
<mp:scope name="test" exclude="true"/>
<mp:scope name="compile" exclude="true"/>
</mp:scopes>
</rm:provider>
</rm:searchPath>
and in the cspec i try to include the bundle.
<cs:dependency name="liquibase-osgi" componentType="maven"/>
But when i try to resolve and materialize i get the following error.
ERROR [0002] : java.io.FileNotFoundException: File not found: http://central.maven.org/maven2/org/liquibase/liquibase-osgi/3.4.1/liquibase-osgi-3.4.1.bundle
Errors and Warnings
E [0002] : java.io.FileNotFoundException: File not found: http://central.maven.org/maven2/org/liquibase/liquibase-osgi/3.4.1/liquibase-osgi-3.4.1.bundle: File not found: http://central.maven.org/maven2/org/liquibase/liquibase-osgi/3.4.1/liquibase-osgi-3.4.1.bundle
Any hints on why it is looking for a file with .bundle extension?
Regards,
Thomas