[Csvtosql-cvs] csvtosql build.xml,1.9,1.10
Brought to you by:
davideconsonni
|
From: Vano <jj...@us...> - 2006-10-12 10:43:49
|
Update of /cvsroot/csvtosql/csvtosql In directory sc8-pr-cvs4.sourceforge.net:/tmp/cvs-serv14724 Modified Files: build.xml Log Message: lib.src property added and then used when compiling the source. (in javac task) Index: build.xml =================================================================== RCS file: /cvsroot/csvtosql/csvtosql/build.xml,v retrieving revision 1.9 retrieving revision 1.10 diff -C2 -d -r1.9 -r1.10 *** build.xml 9 Mar 2005 10:23:22 -0000 1.9 --- build.xml 12 Oct 2006 10:43:45 -0000 1.10 *************** *** 26,29 **** --- 26,30 ---- <target depends="welcome" name="init"> <property location="src" name="src.dir"/> + <property location="lib" name="lib.dir"/> <property location="classes" name="classes.dir"/> <property location="." name="src.dir"/> *************** *** 39,43 **** <classpath> <pathelement path="${classpath}"/> ! <fileset dir="lib"> <include name="**/*.jar"/> </fileset> --- 40,44 ---- <classpath> <pathelement path="${classpath}"/> ! <fileset dir="${lib.dir}"> <include name="**/*.jar"/> </fileset> |