On Sat, 15 Sep 2001 08:06, Edgar "Sánchez" wrote:
>   Hi everyone!!!.
>
>   No body answer my last question, I guess it wasn't
> good enough .. well never mind....  I have another
> one...
>
>    I've been having troubles trying to compile my
> project.   Let me explain myself better...
>
>   I have 4 directories within a directory. Each
> directory have java files to be compiled by the javac
> Ant tag.
>
> this is the structure:
>
>   Arquitecture
>      util
>      EJB
>      servlets
>      taglib
>      startup

Would something as simple as 

    <javac srcdir="util"
           destdir="${build.classes}"
           debug="${debug}"
           optimize="${optimize}"
           deprecation="${deprecation}">
      <classpath refid="project.class.path" />
      <src path="EJB"/>
      <src path="servlets"/>
      <src path="startup"/>
      <src path="taglib"/>
    </javac>

work for you ?

-- 
Cheers,

Pete

---------------------------------------------------------------
The difference between genius, and stupidity? Genius has limits
---------------------------------------------------------------

Reply via email to