>Is there any ant task available that can display a class path, 
>to verify that class path settings are correct.
>Also, are there any good reference texts available on setting 
>the class path for Ant tasks - in particular, I can't find 
>anything that suggests how to do the
>following:
>Set the class path the default ant class path, WITH THE 
>EXCEPTION of SOME JAR file installed in the ant lib directory


Dont set CLASSPATH for Ant.

Inside the buildfile you could use <path>s, e.g.

<path id="classpath">
    <fileset dir="lib" excludes="dont-use-this.jar"/>
</path>
<java .... classpathref="classpath"/>



Jan

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to