Oops, didn't mean to commit that old cruft.

git-svn-id: https://samskivert.googlecode.com/svn/trunk@2854 6335cc39-0255-0410-8fd6-9bcaacd3b74c
This commit is contained in:
samskivert
2010-09-08 19:06:27 +00:00
parent e68daada41
commit 3269bc4db9
+1 -19
View File
@@ -55,29 +55,11 @@
<delete dir="${deploy.dir}"/>
</target>
<!-- build the java class files -->
<target name="imfer" depends="prepare">
<javac srcdir="${src.dir}" destdir="${classes.dir}" includeAntRuntime="false"
debug="on" optimize="${build.optimize}" source="1.5" target="1.5" encoding="utf-8">
<classpath>
<path refid="classpath"/>
<fileset dir="lib" includes="imferrer.jar"/>
</classpath>
<compilerarg value="-Xlint"/>
<compilerarg value="-Xlint:-serial"/>
<!--<compilerarg value="-implicit:class"/>-->
<compilerarg value="-proc:only"/>
</javac>
</target>
<!-- build the java class files -->
<target name="compile" depends="prepare,compute-builds">
<javac srcdir="${src.dir}" destdir="${classes.dir}" includeAntRuntime="false"
debug="on" optimize="${build.optimize}" source="1.5" target="1.5" encoding="utf-8">
<classpath>
<path refid="classpath"/>
<!--<fileset dir="lib" includes="immuter.jar"/>-->
</classpath>
<classpath refid="classpath"/>
<exclude name="com/samskivert/net/MailUtil*" unless="build.mail"/>
<exclude name="com/samskivert/servlet/**" unless="build.servlet"/>
<exclude name="com/samskivert/util/Log4JLogger*" unless="log4j.present"/>