Hello
We're using the maven-bundle-plugin to have a repository.xml on our maven
repository, it used to work but now we started having file-uris instead of
http-uri in repository.xml.
The plugin is configured as follows:
<pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.felix</groupId>
<artifactId>maven-bundle-plugin</artifactId>
<version>2.1.0-SNAPSHOT</version>
<executions>
<execution>
<id>update-remote-obr</id>
<phase>deploy</phase>
<goals>
<goal>deploy</goal>
</goals>
<configuration>
<remoteOBR>trialox</remoteOBR>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</pluginManagement>
using version 2.0.1 things work.
Cheers,
reto