I’m using ANT buildfiles to compile/deploy my webapplication.
In Eclipse, I’ll edit the Build Path properties and add some JAR files so that Eclipse can parse/compile the class files properly.
Unfortunately, I also have a LIB directory with all of those JAR files, so that when I deploy, ANT will package up the JAR files.
Anyone know if it would be possible to have ANT lookup all the JAR files that eclipse is using, copy those to my deployment web-inf/lib?
This would let me use 1 set of JAR files instead of the 2 sets I’m using currently, and when I updated a JAR file, ANT would build the next release properly, rather then me going into LIB and deleted the old one and copying the new one.
Greg