Hi,
I am trying to compile Java files in two packages, A and B. Some files
in A depends on files B and vice versa. The question is how I should
place javac tasks in the xml file. I cannot compile all the files in
both A and B together, there are too many of them. When I placed the
tasks as below,

<javac srcdir="A" destdir="classes" />
<javac srcdir="B" destdir="classes"/>

the first task shows error message claiming that some files in package
B that appear in the import statements in some file in package A are
not found.

How should I do?

Thanks.

-Ming

Reply via email to