Re: classes not going where expected

2001-02-27 Thread Dale G. Herrig
Cathal Mc Ginley wrote: > Hi, > If I get you correctly, you have a directory structure with all your > java files and classes in, say, /home/dale/com/foobar and I'm going to > guess your build.xml is also in /home/dale/com/foobar with ${basedir} > set to ".", and javac srcdir and destdir also set

Re: classes not going where expected

2001-02-26 Thread Cathal Mc Ginley
Hi, If I get you correctly, you have a directory structure with all your java files and classes in, say, /home/dale/com/foobar and I'm going to guess your build.xml is also in /home/dale/com/foobar with ${basedir} set to ".", and javac srcdir and destdir also set to "." Right, if this is the case

RE: classes not going where expected

2001-02-26 Thread Tim Vernum
> I have a package, com.foobar.AntTest > when I compile the java files in the > directory of the same name, I would > expect the class files to appear there, > since I have my 'srcdir="."' and > "destdir="."' as shown in the below > compile target, Well, that's a recipe for disaster, but to eac

classes not going where expected

2001-02-26 Thread Dale G. Herrig
I have a package, com.foobar.AntTest when I compile the java files in the directory of the same name, I would expect the class files to appear there, since I have my 'srcdir="."' and "destdir="."' as shown in the below compile target, but instead a sub-directory is created com/foobar/AntTest