This content has been marked as final.
Show 1 reply
-
1. ant task <jsfunitwar> doesn't specify where it gets jars
ssilvert Feb 27, 2011 8:00 PM (in response to robertgary1)Hi Robert,
The ant task does use the classpath to find your jars. In this case, it's trying ot load NoNewEntryMap.class in order to find the jsfunit core jar.
You can look here at the autoAddLibs() method:
This in turn calls ResourceUtils.getResourceLocation():
http://www.docjar.com/html/api/org/apache/cactus/integration/ant/util/ResourceUtils.java.html
Beyond that, I'm not sure what to tell you. If the jar is in your classpath it should find it.
Stan