|
From: Johan T. <jt...@us...> - 2006-10-25 08:45:44
|
Update of /cvsroot/vienti/vienti In directory sc8-pr-cvs9.sourceforge.net:/tmp/cvs-serv22720 Modified Files: build.xml Log Message: Create the class directory on build. Target the compile against JDK1.4, it's supposed to work there by default (almost). Index: build.xml =================================================================== RCS file: /cvsroot/vienti/vienti/build.xml,v retrieving revision 1.13 retrieving revision 1.14 diff -u -d -r1.13 -r1.14 --- build.xml 29 Jun 2006 10:25:44 -0000 1.13 +++ build.xml 25 Oct 2006 08:45:42 -0000 1.14 @@ -25,6 +25,11 @@ ** liable for any use that may be made of the information contained herein. ** ** $Log$ +** Revision 1.14 2006/10/25 08:45:42 jtorin +** Create the class directory on build. +** Target the compile against JDK1.4, it's supposed to work there by +** default (almost). +** ** Revision 1.13 2006/06/29 10:25:44 jtorin ** Replace tabs with spaces. ** Fix the 'Implementation-Version' string in the jar manifest. @@ -124,7 +129,9 @@ <touch file="${distdir}/schemas/.dummy"/> <!-- Compile the java code. --> - <javac srcdir="${source}" destdir="${class}" classpath="${classpath}"/> + <mkdir dir="${class}"/> + <javac srcdir="${source}" destdir="${class}" + classpath="${classpath}" target="1.4" source="1.4"/> <!-- Put everything in ${source} into a jar file. --> <jar destfile="${distdir}/lib/vienti.jar"> |