Re: My first build with ant failed

2007-10-09 Thread Mohammad Khan
Thanks everybody, Mohammad On 10/8/07, Vijay Aravamudhan <[EMAIL PROTECTED]> wrote: > > Your target for compile is incorrect. It should read: > > > classpathref="libraries"/> > > > You are missing " in two places. > > hth, > Vijay > > > Mohammad Khan wrote: > > below is the part o

Re: My first build with ant failed

2007-10-09 Thread David Weintraub
As others have pointed out, you're missing a couple of quotes. I recommend that you do the following: * Put each parameter for a task on a separate line. It makes missing quotes easier to see. * Use an editor that does syntax highlighting. When editors do syntax highlighting, quoted text is usuall

Re: My first build with ant failed

2007-10-08 Thread Vijay Aravamudhan
Your target for compile is incorrect. It should read: You are missing " in two places. hth, Vijay Mohammad Khan wrote: below is the part of my build.xml

Re: My first build with ant failed

2007-10-08 Thread Rob Seegel
Mohammad Khan wrote: Look more closed at the quotes on your srcdir (and destdir) attributes. Add a closing to the first, and an opening set to the second. - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional

My first build with ant failed

2007-10-08 Thread Mohammad Khan
below is the part of my build.xml ant returned: BUILD FAILED srcdir "/home/user/project/src destdir=/home/user/project/bin" does not exist! I see both src and bin