XSLT Task

2007-01-31 Thread subir bhaumik
Hi, I am using apache-ant-1.6.5 api to generate report in html format. The code snippet : XSLTProcess xslt_process = new XSLTProcess(); xslt_process.setProject(p2); //xslt_process.setBasedir(new File(base_dir)); xslt_process.set

RE: possible delete bug??

2007-01-31 Thread Tracy Jones
Thanks Peter - if I specify this as my excludes - it works -Original Message- From: Peter Reilly [mailto:[EMAIL PROTECTED] Sent: Wednesday, January 31, 2007 1:30 PM To: Ant Users List Subject: Re: possible delete bug?? 1) you are excluding "a", no

RE: java.lang.AbstractMethodError: org/apache/commons/net/ftp/FTPFileEntryParser.parseFTPEntry

2007-01-31 Thread Tracy Jones
Since I didn't get any comments on this - what I did was write a shell script to do the ftp because the FTP code does not seem to work with j9 :-( it works, but it's a hack... -Original Message- From: Tracy Jones Sent: Thursday, January 25, 2007 3:07 PM To: 'Ant Users List' Subject: RE:

RE: How to execute Dos Command (Wrap...) using Ant

2007-01-31 Thread Yadav Ganesh-C01503
Thanks Charles for the clue. Ant task, solved my problem. Following is the build.xml contents, I used to solve this problem. Thanks Ganesh Yadav -Original Message- From: [EMAIL PROTECTED] [m

possible delete bug??

2007-01-31 Thread Tracy Jones
Hi - I have the following target that is meant to delete all files in a directory except for the ones in a list The directory temp con

RE: How to execute Dos Command (Wrap...) using Ant

2007-01-31 Thread cknell
Investigate the ANT task. -- Charles Knell [EMAIL PROTECTED] - email -Original Message- From: Yadav Ganesh-C01503 <[EMAIL PROTECTED]> Sent: Wed, 31 Jan 2007 16:32:35 -0500 To: "Ant Users List" Subject: How to execute Dos Command (Wrap...) using Ant Hello there, I am tr

RE: possible delete bug??

2007-01-31 Thread Tracy Jones
Thanks Peter - but since I am excluding temp, I did not expect ant to even go into temp to delete anything inside of it... Tracy -Original Message- From: Peter Reilly [mailto:[EMAIL PROTECTED] Sent: Wednesday, January 31, 2007 1:30 PM To: Ant Users List Subject: Re: possible delete bug??

How to execute Dos Command (Wrap...) using Ant

2007-01-31 Thread Yadav Ganesh-C01503
Hello there, I am trying to figure out how to execute Oracle provided WRAP utility using Ant build script. wrap iname=file.sql oname=file.plb Wrap is a DOS based command provided by Oracle which encrypts sql file and creates .PLB file. I can use this command in a batch file as shown above.

Re: possible delete bug??

2007-01-31 Thread Peter Reilly
1) you are excluding "a", not "temp/a" 2) java does not expose symbolic links so the delete task does not know that "a" is a symbolic link, it thinks it is a directory and follows it. Peter On 1/31/07, Tracy Jones <[EMAIL PROTECTED]> wrote: Hi - I have the following target that is meant

possible delete bug??

2007-01-31 Thread Tracy Jones
Hi - I have the following target that is meant to delete all files in a directory except for the ones in a list The directory temp con

Re: Dependset NullPointerException

2007-01-31 Thread Oliver Robinson
I tried the latest nightly build: apache-ant-20070123 which threw the same error. Anything else that might help diagnose to the problem? Thanks, Oliver Matt Benson wrote: Please check this against a (very) recent build from Ant HEAD. I believe Martijn Kruithof recently removed the NPE from

Calling another ant file with -v option

2007-01-31 Thread Kalsi, Ramnish
I have an ant file, which calls another ant file. Can I somehow, specify verbose option to this child file. I can think of using exec to achieve this, but any other options ? --thanks *** Confidentiality Notice & Disclaimer * This message, together with a

How to let the copy-task fail if a fileset is not completely available

2007-01-31 Thread Thomas.Poersch
Hi! I am creating install packages with ANT's copy-task. It works fine and fails if one file is missing. Now I want to define the target directory only once with the following construction.