RE: Tasks and TaskContainer

2004-01-23 Thread Kichline, Don (EM, PTL)
I figured out what was going on. You were correct it was the classloaders. I was running the tasks as class files that I was including at run time in my script. I put the offending code into a jar and put it into my ant/lib directory and everything worked perfectly. Don -Original Message-

Re: Javac task skips inner classes

2004-01-23 Thread Doug Lochart
Not knowing how your development procedure is laid out I can only comment on how I do it. First off I separate code as best I can into cohesive projects being very careful about cross project dependencies. Thus I don't have to compile everything all the time unless I am doing a release. When I wan

RE: Javac task skips inner classes

2004-01-23 Thread Dominique Devienne
> -Original Message- > From: Clifton C. Craig [mailto:[EMAIL PROTECTED] > > I have an issue where I run over a .java file with an inner > class and the inner class is not generated. My build process involves a > lot of Java comppiles and I'm not sure exactly where things get out of > step

Re: Is there an Ant task to get filename from a directory

2004-01-23 Thread Matt Benson
--- Matt Benson <[EMAIL PROTECTED]> wrote: > To do this with pure Ant, see the > task. ack, lemme take that back... since pathconvert doesn't (yet) support mappers, you're not going to get what you want that way... __ Do you Yahoo!? Yahoo! SiteBuilder - Free web

RE: multiple commands with same ssh connection

2004-01-23 Thread Anderson, Rob (Global Trade)
Yes, Line them up in the command attribute separated by a ";". Multiple command attributes are not supported. -Rob Anderson -Original Message- From: Jacob, Anil - MWT [mailto:[EMAIL PROTECTED] Sent: Friday, January 23, 2004 10:41 AM To: Ant Users (E-mail) Subject: multiple commands w

Re: Is there an Ant task to get filename from a directory

2004-01-23 Thread Matt Benson
To do this with pure Ant, see the task. -Matt __ Do you Yahoo!? Yahoo! SiteBuilder - Free web site building tool. Try it! http://webhosting.yahoo.com/ps/sb/ - To unsubscribe, e-mail: [EMAIL PROTE

Re: Is there an Ant task to get filename from a directory

2004-01-23 Thread Clifton C. Craig
Whoops, I neglected one important piece. You have to use propertyregex from Ant contrib to do a replace of all semis. See the following snippet from our actual build: includes="*.jar" excludes="etc.jar"/> regexp="[;]" replace=" "/> I store the files

Re: multiple commands with same ssh connection

2004-01-23 Thread Clifton C. Craig
If your target system is Linux try: That's how I do it at least. Clifton C. Craig, Software Engineer Intelligent Computer Systems - A Division of GBG 2101 Embassy Drive Lancaster, PA 17603 Phone: 717-295-7977 ext. 621 Fax: 717-295-7683 [EMAIL PROTECTED] [EMAIL PROTECTED]

RE: Is there an Ant task to get filename from a directory

2004-01-23 Thread Veerappan Saravanan-ESV007
Thanks Craig, Unfortunately it returns file names delimited by ";". Is there a way to get the file name with relative path? Also I see that the classpath entries in manifest file should be space delimited. Here is the sample of what I did. This prints jdom.jar;log4j-1.2.8.jar inste