Re: javac exclude not working for directories

2007-03-22 Thread Matt Benson
--- dtown <[EMAIL PROTECTED]> wrote: > I tried that before, and it failed. I attempted to > compile classes in the > directories I wanted to exclude (it failed because > they have dependencies > which I did not include in the classpath) Okay, wait. First, yes, I forgot that a pattern ending in

Re: javac exclude not working for directories

2007-03-22 Thread dtown
I tried that before, and it failed. I attempted to compile classes in the directories I wanted to exclude (it failed because they have dependencies which I did not include in the classpath) Here is the task I used: javac srcdir="${root}" destdir="${classes}" debug="on"

Re: javac exclude not working for directories

2007-03-22 Thread Matt Benson
You've excluded the directories, but not their contents. Append ** to each. -Matt --- dtown <[EMAIL PROTECTED]> wrote: > I can't seem to figure out what I am doing wrong. > The following is my javac > task: > > destdir="${classes}" >debug="on" >debuglevel="l

Re: javac exclude not working for directories

2007-03-22 Thread dtown
Turns out your right...critical mistake on my part, I had a cross-package dependency where I shouldn't have. Funny how 1 line will kill your build script. Also, just to note, I removed the ** from my includes/excludes, and it behaved as expected. Thanks again! On 3/22/07, Matt Benson <[EMAIL