I am trying to use the command line with a .bndrun file.
java -jar biz.aQute.bnd-6.1.0.jar repo -p config.bndrun get org.eclipse.osgi
inside my config.bndrun I have
-plugin.repo.Common: ${common.repo}
where the ${common.repo} is defined in an include file. When I go to run (with some debug) I see
[main] DEBUG aQute.bnd.osgi.PluginsContainer - Trying pre-plugin ${common.repo}
and with some remote debugging I can see the properties are loaded but the macro’s are not expanded.
However on the same file if I run
java -jar biz.aQute.bnd-6.1.0.jar resolve resolve -q -u -p config.bndrun
This works fine , resolves the macro’s , creates the plugins for the repositories and resolves.
Thoughts?