Hi all,
My Project’s ant build file is ‘build.xml’ which does not contains any javac statements. Instead This ‘build.xml’ call another three xml files which complies the code.
But when point the build.xml to eclipse to configure using the option “Java Project from Existing Ant Buildfile”, it says ‘there is no javac statement’ and hangs.Help me in this regard…
My application is based on J2EE-Struts.(JDK 1.4.1).
The calling point in buid.xml…
<target name=”create_jar_war” depends=”clean”>
<ant antfile=”SAGEJBProject.xml” /> –These files
<ant antfile=”SAGWEBProject.xml” /> — contains the required
<ant antfile=”SAGBATCHProject.xml” /> –Javac statements
</target>