James Duncan Davidson wrote:
>
> Yep. What he needs to be able to do is launch Ant
> externally with the classpath that he's configured
> and know that not all the internals (xml parser
> mainly) of Ant are on the Tasks classpath.
Not just the internals of Ant - here is an excerpt from xml-cocoon2's
build.xml:
<path id="classpath">
<fileset dir="./lib">
<include name="*.jar"/>
</fileset>
</path>
<javac srcdir="${build.src}"
destdir="${build.dest}"
debug="${debug}"
optimize="${optimize}"
deprecation="${deprecation}"
target="${target.vm}">
<classpath refid="classpath"/>
</javac>
I don't want *any* of those jars in my classpath...
- Sam Ruby