Re: AW: Rename a dir

2010-03-26 Thread Mike Stewart
try: Mike S. >>> "Knuplesch, Juergen" 26/03/2010 14:34 >>> Hello, I dont think so, because this will move the files inside the dir instead of just rename the name of the dir. juergen -- Jürgen Knuplesch -Ursprüngliche Nachricht- Von: St. Denis,

Re: 550 Failed to change directory

2009-01-09 Thread Mike Stewart
Sounds like someone changed the permissions on the target directory on the remote machine. Mike S. >>> "Christopher Styles" 09/01/2009 15:23:09 >>> Hi, I have been running an ant target via cruise control for some time that ftp's one file from my build box to a linux environment, then all of

RE: ANT failing from command line

2008-12-01 Thread Mike Stewart
ailable > cvsversion : Not Available > ildasm : Initialization error > maudit : Not Available > antlr : Initialization error > ftp : Initialization error > jpcovreport : Not Available > xmlvalidate : Initialization error > cab : Initialization error > jdepend : Missing depen

RE: ANT failing from command line

2008-12-01 Thread Mike Stewart
able > WsdlToDotnet : Initialization error > jpcovmerge : Not Available > cvsversion : Not Available > ildasm : Initialization error > maudit : Not Available > antlr : Initialization error > ftp : Initialization error > jpcovreport : Not Available > xmlvalidate : Initialization

RE: ANT failing from command line

2008-12-01 Thread Mike Stewart
i.JDepend symlink : Initialization error mmetrics : Not Available junit : Initialization error vajexport : Not Available N:\tasks\ant task for juliet>ant -version Apache Ant version 1.6.2 compiled on July 16 2004 -----Original Message- From: Mike Stewart [mailto:[EMAIL PROTECTED] Sent: 01 Dec

Re: ANT failing from command line

2008-12-01 Thread Mike Stewart
in the DOS window type SET and see what the environment variable ANT_HOME is set to, also check the PATH variable as this could be causing issues. Mike S. >>> "Ammar Khalid" <[EMAIL PROTECTED]> 01/12/2008 11:34:55 >>> I have written an ANT script and tested in my eclipse environment and it wor

ANT and SQLPlus

2008-04-23 Thread Mike Stewart
I am trying to execute a SQLPlus script from ANT and have been unable to get this to work when the SQLPlus script requires user input as in the example below: If I execute the ANT target Create: Note have also tried the /C, /c, /k value here but

Re: Can zip task to create a zip archive with password?

2008-04-16 Thread Mike Stewart
Not that I could find as zip doesn't have a command line argument for passwords (unless you buy the enterprise version) but you can download Alzip from http://www.altools.com/Downloads/ALZip.aspx and use a command like which has a command line which accepts a password with the -p switch.

Re: Calling another ant script

2007-10-05 Thread Mike Stewart
Try using the ant target as below Mike S. >>> [EMAIL PROTECTED] 05/10/2007 11:46:27 >>> Hi All, I need to call one ant script from another ant script. Can somebody please tell me how to do that. Regards Irfan. -

Re: Override ignored for property file

2007-08-23 Thread Mike Stewart
The override is happening because the property is already defined in an earlier script. you can either remove the original setting of the property or do something like: Mike S. >>> [EMAIL PROTECTED] 23/08/2007 12:25:29 >>> Dear Ant Users, I have inherited a project where I'm trying to g

Re: How to convert back slashes to forward slashes

2007-08-16 Thread Mike Stewart
You can use exec like: Might have to experiment with the single quotes not sure they are required. Mike S. >>> [EMAIL PROTECTED] 09/08/2007 19:04:25 >>> perl ?? I don' t have perl installedso how would the exec call that

RE: Invoking sql files in ANT.

2007-07-20 Thread Mike Stewart
Check out http://tahiti.oracle.com/pls/db92/db92.error_search?search=01000 a handy site for checking the error messages. ORA-00922 missing or invalid option Cause: An invalid option was specified in defining a column or storage clause. The valid option in specifying a column is NOT NULL to specif

RE: call other build files

2007-06-08 Thread Mike Stewart
>>> [EMAIL PROTECTED] 08/06/2007 12:12 >>> Hi, -Original Message- From: arijit [mailto:[EMAIL PROTECTED] Sent: Friday, June 08, 2007 1:05 PM To: user@ant.apache.org Subject: call other build files /* 1. Is it possible to call Build2 file from Build1 which is executed using ANT

RE: Concatenating a string to a property

2007-03-16 Thread Mike Stewart
generally do this: .. .. Hope this helps. GregD 859-386-8309 -Original Message- From: Mike Stewart [mailto:[EMAIL PROTECTED] Sent: Friday, March 16, 2007 11:56 AM To: user@ant.apache.org Subject: Concatenating a string to a property Hi, I am trying to get a value from a property that

RE: Concatenating a string to a property

2007-03-16 Thread Mike Stewart
ny' come from? Did you set it earlier? remote.jboss.jndi.port.b4usony -----Original Message- From: Mike Stewart [mailto:[EMAIL PROTECTED] Sent: Friday, March 16, 2007 8:56 AM To: user@ant.apache.org Subject: Concatenating a string to a property Hi, I am trying to get a value from a prope

Concatenating a string to a property

2007-03-16 Thread Mike Stewart
Hi, I am trying to get a value from a property that is defined in the build.properties file - remote.jboss.jndi.port.server1=17031 remote.jboss.server=server1 The remote.jboss.server varies depending on which client is being built, I tried the definition below but it is performing text substitu

Text Scripting

2006-08-11 Thread Mike Stewart
Hi, I have some text files that I have to parse and modify, can anyone advise the best way to do this - ANT commands, ANT Tasks, call to PERL or some other scripting language? The scripts will be fairly complex including pattern searching, text replacement, text sorting etc. Regards, Mike S. --