Hi, I would like to set up my JUnit classpath to include all of the jars in a given zip file. I'm using Ant 1.8.2. Everything I read tells me this ought to work...
<zipfileset id="my.zip" src="/path/to/my.zip" includes="*.jar"/> <junit ...> <classpath> <fileset refid="my.zip".> </classpath> </junit> but verbose/debug output is telling me it's not finding the jars in the Zip: dropping /path/to/my.zip:myjar from path as it doesn't exist So it appears that it's finding the Zip and the Jars in it (they are all listed in similar "dropping" warnings) but ultimately I get "NoClassDefFound" errors at runtime, so it's obviously not finding the Jar bits. Any suggestions?