Re: AW: Passing a list of files to javac

2010-03-11 Thread Nan Null
I tried to help out by experimenting with the "src" sub element. In the sub element, I tried various settings. for example: However, I encounter error saying things like srcdir needs to be set, or .../MyJavaFile.java is not a directory. So, either I am not doing it right, or it's a bug

Re: foreach ant task

2010-03-11 Thread Francis GALIEGUE
On Thu, Mar 11, 2010 at 15:02, Kaushal Shriyan wrote: > Hi > > can someone here give me example to use foreach ant task to deploy > same war to multiple running Tomcat Server? > http://ant-contrib.sourceforge.net/tasks/tasks/foreach.html > You should consider using instead: with , you have to de

foreach ant task

2010-03-11 Thread Kaushal Shriyan
Hi can someone here give me example to use foreach ant task to deploy same war to multiple running Tomcat Server? http://ant-contrib.sourceforge.net/tasks/tasks/foreach.html Thanks, Kausha - To unsubscribe, e-mail: user-unsubsc

Re: AW: Passing a list of files to javac

2010-03-11 Thread Matt Benson
Have you tried wrapping a refid'd fileset in a (path) element nested in ? That, according to the manual, should work (note that you can nest any filesystem-based resource collection into a path). This presumes you're using Ant 1.7+... HTH, Matt On Mar 11, 2010, at 4:42 AM, Robert Mentee

Re: AW: Passing a list of files to javac

2010-03-11 Thread Robert Menteer
That solves the minor problem of ; vs , but doesn't solve the real problem. The real problem is in getting javac to recognize a filelist/fileset/path. What I'm looking for is something to replace the filelist that javac will accept. On Mar 11, 2010, at 2:23 AM, jan.mate...@rzf.fin-nrw.de wrote: