in rcomp-app/src/main/java/org/apache/karaf/rcomp/bndrun/BndRunOption.java [49:54]
public static Option bndRun(String bndRunPath, String repositoryPath) throws Exception {
URL repoURL = new File(repositoryPath).toURI().toURL();
File bndRunFile = new File(bndRunPath);
List<Option> options = new BndRunOption(bndRunFile, repoURL).options;
return composite(options.toArray(new Option[] {}));
}