Tariq Zamrawi wrote:
> when i run the build file ant give me error
> because he cant see some one of the package
> so how can i tell ant to take in the his consedration when he compile the
> target these package...
What do you mean when you say Ant can't see one of the packages? Is
this a package in the source tree, under the same root directory as
other things that *are* being compiled? Or does it have a different
root directory?
If it's the second case, the javac task will compile multiple source
directories like this (from the manual):
<javac srcdir="${src}:${src2}" .../>
-OR-
<javac ...>
<src path="${src}"/>
<src path="${src2}"/>
.
.
</javac>
-Steve
--
To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>