Joined: Fri Jan 26, 2007 3:51 pm Posts: 16
|
HI there,
When I compile my project using ANT the compiler states the following:
compile:
[javac] Compiling 2 source files to C:\Scholastic_Hibernate\build\classes
[javac] Note: C:\Scholastic_Hibernate\src\java\scholastic\models\Company.jav
a uses unchecked or unsafe operations.
[javac] Note: Recompile with -Xlint:unchecked for details.
My build.xml file has the following:
<!-- Compile Java source -->
<target name="compile">
<mkdir dir="${build.classes.dir}"/>
<javac srcdir="${src.java.dir}"
destdir="${build.classes.dir}"
classpathref="project.classpath"/>
</target>
Is there an attribute for the javac tag that forces compilation with the switch -Xlint:unchecked? I need to get the details from the compiler so that I can fix the problem.
Alan
|
|