>>>>> "DM" == David Makower <[EMAIL PROTECTED]> writes:
DM> Is there another way to do this, other than manually editing the
DM> build.xml file every time I add a new JAR file to the lib
DM> directory?
No way in Ant 1.1 but in current CVS you can have a fileset element
nested into a path like this
<classpath>
<fileset dir="lib">
<include name="**/*.jar" />
<exclude name="doesnt-work.jar" />
</fileset>
</classpath>
Stefan
