R
RC
I have a very simple section of ant's build.xml file
for javac
<target name="compile" depends="prepare">
<javac srcdir="${src.dir}" destdir="${build.prod.dir}">
<classpath refid="project.classpath"/>
</javac>
</target>
For Java 1.5 or above, I need to add -Xlint option for javac
Please tell me how to do that. I am still learning build.xml
from O'Reilly's Ant book.
Thank Q!
for javac
<target name="compile" depends="prepare">
<javac srcdir="${src.dir}" destdir="${build.prod.dir}">
<classpath refid="project.classpath"/>
</javac>
</target>
For Java 1.5 or above, I need to add -Xlint option for javac
Please tell me how to do that. I am still learning build.xml
from O'Reilly's Ant book.
Thank Q!