I'm working on my karaf debian package:
https://github.com/steinarb/karaf-debian
I'm trying to replace the following dependency in the system default
repository with a dependency installed from a debian package:
mvn\:org.fusesource.jansi/jansi/1.16 = 8
To accomplish this I tried adding /usr/share/maven-repo where debian
java packages install their jar files in a maven repository structure,
to the defaultRepositories list, like this:
org.ops4j.pax.url.mvn.defaultRepositories=\
file:${karaf.home}/${karaf.default.repository}@id=system.repository@snapshots, \
file:/usr/share/maven-repo@id=debian.repository, \
file:${karaf.data}/kar@id=kar.repository@multi@snapshots, \
file:${karaf.base}/${karaf.default.repository}@id=child.system.repository@snapshots
But this didn't work.
Is there something wrong with the syntax of the file URL?
Wouldn't it work to add this repository here?
Thanks!
- Steinar