I have a bunch of OSGi packages that basically contain jars containing other jars and a manifest.
bundle xyz.jar: somejar1.jar somejar2.jar Manifest
I want to run some junit tests and need some classes inside these packages. Is there an easy way in Ant to say
<path name="myclasspath" location="[stuff inside OSGI bundle xyz.jar]> ?
I could untie them in the temp directory, but it seems tedious, plus I will not use the class path inside the OSGi package.
classpath ant osgi
marathon
source share