Hi,
I'm trying to build my project programmatically via the API provided by biz.aQute.bndlib.
So far I've created a bnd-workspace with cnf folder and everything else.
Now when I try to build it via the following code (Xtend, but I think it's readable)
val workspace = Workspace.getWorkspace(workspaceLoc.toFile)
workspace.allProjects.forEach[clean]
workspace.allProjects.forEach[prepare]
workspace.allProjects.forEach[build]
I end up with errors complaining about missing libraries that are on the buildpath of my project and can not be found in the bnd cache during the build.
It seems I currently do not pick up the Maven repositories defined in the ext folder of cnf, but I couldn't find any method to add those repositories so that they are used when building my projects.
Can anyone give me a hint in the right direction?
Kind regards,
Thomas