RE: difference between unzip task and unzip executable

2011-11-04 Thread Justin Georgeson
Just to eliminate any possibility of file handle closure, disk I/O flushing, etc. I put the in a separate target that only does the unzip, ran that target by itself, and then ran ant a second time for the javadoc target and it still fails. I don't understand what the problem can be when everyth

difference between unzip task and unzip executable

2011-11-04 Thread Justin Georgeson
I'm trying to get javadoc inheritance working from JDK classes, and what I'm finding is if I use in my Ant target, the javadoc task ignores that sourcepath entry because it doesn't contain any packages matching my packagenames parameter (running with -verbose says it "doesn't contain any pack

Re: Ant fixcrlf

2011-11-04 Thread Stefan Bodewig
On 2011-11-04, prbharsakle wrote: > There are two letters "^" and "M". Crlf is treating it as a ^M and removing > it but I want it there. Then something else must be doing that. The fixcrlf will not touch the letters ^ or M, not even if they happen to be next to each other. It will only ever de

Re: Ant fixcrlf

2011-11-04 Thread prbharsakle
There are two letters "^" and "M". Crlf is treating it as a ^M and removing it but I want it there. Thanks, Pravin Bharsakle -- View this message in context: http://ant.1045680.n5.nabble.com/Ant-fixcrlf-tp4963233p4963718.html Sent from the Ant - Users mailing list archive at Nabble.com. --

Re: Load property value from build.xml to build.properties

2011-11-04 Thread Stefan Bodewig
On 2011-11-03, Vinodh Kumar wrote: > I trying to load the property release.dir set in build.xml into > build.properties during runtime. But the value is not loaded into > build.properties file. Any hint or can anyone let me know how to get this > done? > *build.xml* > / > >

Re: Ant fixcrlf

2011-11-04 Thread Stefan Bodewig
On 2011-11-04, prbharsakle wrote: > Hi All, > I have defined some logic in my a.csh file. > e.g. : foreach sqlfile (`cat $sql_File | awk '{print $2}' | sed -e > 's/\\/\//g' | tr -d ^M `) > After that I am copying this file to some other location, before that I am > running fixcrlf on this a.csh

Re: Ant fixcrlf

2011-11-04 Thread Parag Doke
Hi Pravin :-). [For others who find the smiley amusing, I know Pravin in person.] If I understand correctly, your intent is to substitute all occurrences of backslash with a forward slash in a set of sql files. Is that right ? And you also use ant to remove the ^M characters. Wouldn't it be okay t

sql syntax error

2011-11-04 Thread Piotr Gawłowski
Why this code SHOW DATABASES; gives me BUILD FAILED com.mysql.jdbc.exceptions.MySQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '' at line 1 Please help me -

AUTO: Maureen Troendle is out of the office. (returning 11/07/2011)

2011-11-04 Thread Maureen Troendle
I am out of the office until 11/07/2011. I will be out of the office on Nov 4th. Note: This is an automated response to your message "Re: Checking if a Target Exists" sent on 11/3/2011 21:40:39. This is the only notification you will receive while this person is away. --

Load property value from build.xml to build.properties

2011-11-04 Thread Vinodh Kumar
Hi, I trying to load the property release.dir set in build.xml into build.properties during runtime. But the value is not loaded into build.properties file. Any hint or can anyone let me know how to get this done? *build.xml* / / *build.properties* /sr

Ant fixcrlf

2011-11-04 Thread prbharsakle
Hi All, I have defined some logic in my a.csh file. e.g. : foreach sqlfile (`cat $sql_File | awk '{print $2}' | sed -e 's/\\/\//g' | tr -d ^M `) After that I am copying this file to some other location, before that I am running fixcrlf on this a.csh file, it does removing the ^M characters from