I am using a whole bunch of jar files in my
classpath. I also want to include some class file in there, say
abc.class
Now when I complie my code it complains that
abc.class not found.
I tried to run ant with the -verbose
option
It then echoed out the classpath that it is
using and :
all the jar files are there in the classpath
but the classfile is not being picked up.
what can i do?
|