You are viewing a plain text version of this content. The canonical link for it is here.
Posted to user@ant.apache.org by Ar...@NIIT.COM on 2001/09/06 16:31:14 UTC

Ant with SQLJ

Hi,

I am using a mix of Java & SQLJ files. The Java and SQLJ files are
interdependent like :

A.java <-- inherits from -- B.sqlj <-- inherits from -- C.java

Right now I have to use 3 different steps to compile all the 3 files, like:

<target name="compile>
    <javac includes="A.java"/>
    <apply executable="sqlj">
        ..............
    </apply>
    <javac includes="C.java"/>
</target>

Is possible for me to compile all the Java and SQLJ files in a single step? 

Regards
Arindam