Folks,

Right now I'm using a build.sh wrapper that sets the correct
classpath for my project:

   #!/bin/sh
   
   CLASSPATH=/opt/tomcat/lib/servlet.jar
   
   for jar in lib/*.jar; do
     CLASSPATH=$CLASSPATH:$jar
   done
   
   ant $@

It would be nice to do things like this from build.xml.

  Stefan

Reply via email to