On Wed, 2002-09-04 at 23:02, Kervin, Stephen wrote: > We use a "lib" folder. But unfortunatly you still need to specify each jar > seperataly on the class path, I have not seen a way to java to recursive a > directory looking for jars. I tend to use a classpath from a > paths.properties file this way it is easily configurable and updateable.
This is what I'm using for now: <target name="compile" depends="prepare" description="Compiles all source code."> <javac srcdir="${src.dir}" destdir="${build.classes}" excludes="**/old/*"> <classpath> <fileset dir="${applibs}"> <include name="**/*.jar"/> </fileset> </classpath> </javarc> </target> It grabs all the jars in ${applibs}. I can then set up my deploy target to copy those jars over to webapps/ROOT/WEB-INF/libs if they change and I should be set, right? Is this the best way to do this? -- To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]> For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>