<!-- --> <!--Target: compile--> <!-- --> <target name="compile" depends="init,clean" description="Compile the java source"> <!-- Compile the java code from ${src} into ${build} --> <javac debug="on" debuglevel="lines,vars,source" srcdir="${src}" destdir="${build}" source="1.6" target="1.6"> <classpath> <pathelement location="${commons-jar}" /> </classpath> </javac> </target>
No comments:
Post a Comment