RE: Passing sysproperties from a file

2006-03-03 Thread Kajsa.Anderson
> -Original Message- > From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] > Sent: Wednesday, February 15, 2006 10:49 AM > To: user@ant.apache.org > Subject: Passing sysproperties from a file > > Hi, > > I'm trying to include a set of properties, taken from a file, > in the Java task as s

Re: Grep?

2006-03-03 Thread Greg Akins
Thanks! I hadn't responded because I was trying to figure this out by myself. I didn't quite get there yet, but made enough progress that I know this is a solution that will work for me. Thanks for your examples, they'll come in handy today. On 3/3/06, Rebhan, Gilbert <[EMAIL PROTECTED]> wrote:

RE: Delete a dir set

2006-03-03 Thread kinjal
Hi Giovanni, I suggest you to include the task defaultexcludes="no" with e.g. Refere the ant manual for proper syntax. What Bill had suggested I agree with him. Kinjal Vohra Telephone:+91 22 5556 7139 Cell :+91 9867 240708 -Original Message- From: Gi

RE: FTP get from Win32 server

2006-03-03 Thread Anderson, Rob (Global Trade)
As an alternative to using FTP, consider installing cygwin ssh server on the remote windows machine and using the task to get the files. I know this does not address your question, but I believe it is a better solution. -Rob Anderson > -Original Message- > From: Giovanni Mesturini [mailt

RE: 1 Questions in ANT

2006-03-03 Thread Anderson, Rob (Global Trade)
I'm not exactly clear on your question...So you are deploying something to both windows (locally) and linux (remote machine). Let me offer my 2 cents. I prefer to deploy things, regardless of the OS and local/remote, in the same exact way. In other words, consider using ftp (or better yet scp) to

RE: Generating PDF documentation .

2006-03-03 Thread bill/wilandra
Has anyone considered converting the docs to Forrest? Forrest is XML based and uses Ant for its process control. Possibly coupling Forrest with AntDoclet will yield both the web site and the PDF that is desired. Of course, this does not preclude the important step that Daniel mentioned "You have to

Re: Generating PDF documentation .

2006-03-03 Thread Daniel Lindner
Steve Loughran wrote: [EMAIL PROTECTED] wrote: Hi , Would like to know , how to generate the PDF documentation similar to what is found in ANT docs (appendix_e.pdf) . The second step in this process, extracting information from the task sources, can be done with the AntDoclet tool:

Complete Newbie Need Hand With Classpath

2006-03-03 Thread Scott Purcell
I am using struts so I was able to take the struts-blank starter build.xml file as a basis. I am creating a web-app here is my structure: Myapp Build.xml WEB-INF/src WEB-INF/lib WEB-INF/classes Inside the above lib directory are libs that could be included with the webapplic

Re: FTP get from Win32 server

2006-03-03 Thread Jeffrey E Care
This is really a commons-net question; Ant doesn't play a role in parsing the FTP server responses. You might get further if you transfer this discussion to the commons-net mailing list. Jeffrey E. (J

RE: Delete a dir set - SOLVED

2006-03-03 Thread Giovanni Mesturini
It works great! Thank you very much Jo --- "Rebhan, Gilbert" <[EMAIL PROTECTED]> ha scritto: > > Hi, > > following snippet works here with ant 1.6.5 on > Win2k, jdk 1.4.2_08 > > >defaultexcludes="no"> > > > > > recursive deleting all CVS folders under /Foobar > > w

FTP get from Win32 server

2006-03-03 Thread Giovanni Mesturini
Hi community, I have to get files from a Windows XP FTP server. Before using Ant I've tried from command line to verify that the FTP server I use (Golden-FTP) works, and it does. This is my ant script: I've tried with standard Ant 1.6.5 and it gave me and er

Re: Generating PDF documentation .

2006-03-03 Thread Steve Loughran
[EMAIL PROTECTED] wrote: Hi , Would like to know , how to generate the PDF documentation similar to what is found in ANT docs (appendix_e.pdf) . Nimish ahh. Fully automated PDF generation is still on the todo list. Appendix E is "appendix E" of Java development with Ant, which was

RE: Delete a dir set

2006-03-03 Thread Rebhan, Gilbert
Hi, following snippet works here with ant 1.6.5 on Win2k, jdk 1.4.2_08 recursive deleting all CVS folders under /Foobar works only with defaultexcludes="no" Regards, Gilbert -Original Message- From: Giovanni Mesturini [mailto:[EMAIL PROTECTED] Sent: Friday

RE: Delete a dir set

2006-03-03 Thread Giovanni Mesturini
Unfortunally the defaultexcludes are deprecated in 1.6.5. Ant manual suggests using instead of defaultexludes, and this is the first try I made: > > > playing with includes doesn't override the default exclusions. trying on, if I will solve it I will share solution with community. thanks ver

AW: 1 Questions in ANT

2006-03-03 Thread Oliver Ashoff
Hi! Using a macro may help. See http://ant.apache.org/manual/ -> Ant Tasks -> Core Tasks -> MacroDef Regards, Oliver > -Ursprüngliche Nachricht- > Von: Karthik [mailto:[EMAIL PROTECTED] > Gesendet: Freitag, 3. März 2006 08:54 > An: user@ant.apache.org > Betreff: 1 Questions in ANT > >

RE: Grep?

2006-03-03 Thread Rebhan, Gilbert
Hi, give an example, a short snippet, the format from your output file etc. which ant task you need an output from ? what do you want to extract from that output ? ... example - i used the grep task to check a xmlpropertyfile for double entries of a property = ... Doubled