Re: Unexpected behavior

2013-12-02 Thread Chris Green
On Nov 27, 2013 1:09 PM, "Steele, Richard" wrote: > I've run into an odd behavior that I'm assuming is a defect but I'd like to > confirm. > > With this build file: > > > > > > > > > > > > > > > > > >

Re: Ant not noticing changes to file unless renamed

2012-04-16 Thread Chris Green
.org > For additional commands, e-mail: user-h...@ant.apache.org > > -- Regards Chris Green E-Mail : chris.green...@gmail.com Mob : 07779 157247

Re: How do I trace where a target was called from in a complicated build?

2012-03-19 Thread Chris Green
gt; To unsubscribe, e-mail: user-unsubscr...@ant.apache.org > For additional commands, e-mail: user-h...@ant.apache.org > > -- Regards Chris Green E-Mail : chris.green...@gmail.com Mob : 07779 157247

RE: Yet another basic question about Ant

2009-09-01 Thread Chris Green
Send me your make file plus any extras. I'll have a look 4 you. chris.green...@gmail.com -Original Message- From: veena pandit Sent: 01 September 2009 19:59 To: Ant Users List Subject: Re: Yet another basic question about Ant It is for a Java program. But I have to convert all the Mak

Re: Need Suggestion in build.properties

2009-08-05 Thread Chris Green
ile in Solaris > > Machine but below script is not working > > > > > > > > Please suggest. > > > > Regards, > > Rajesh > > > > > > ________ > > http://www.mindtree.com/email/disclaimer.html > > > -- Regards Chris Green E-Mail : chris.green...@gmail.com Mob : 07779 157247

Re: Need Suggestion in build.properties

2009-08-05 Thread Chris Green
ase suggest. > > Regards, > Rajesh > > > > http://www.mindtree.com/email/disclaimer.html > -- Regards Chris Green E-Mail : chris.green...@gmail.com Mob : 07779 157247

Re: Loganathan M is out of the office.

2009-07-07 Thread Chris Green
notify us by reply e-mail or telephone and > immediately and permanently delete the message > and any attachments. Thank you > > > > > - > To unsubscribe, e-mail: user-unsubscr...@ant.apache.org > For add

Re: Help with war task

2009-06-04 Thread Chris Green
-- > To unsubscribe, e-mail: user-unsubscr...@ant.apache.org > For additional commands, e-mail: user-h...@ant.apache.org > > -- Regards Chris Green E-Mail : chris.green...@gmail.com Mob : 07779 157247

svnant problems

2009-02-11 Thread Chris Green
Hi I'm trying to get svnant running and keep getting an error :- Could not load definitions from resource svntask.properties. It could not be found. All appropriate jar files have been placed in the ANT/Lib directory etc but I still get the error Can anyone help. Chris

Re: Ant : Very slow on Vista

2008-12-10 Thread Chris Green
t, and based on what I see there is no specific task that >>> take long time just a "cyclic" run / stop. My task do javac, copy files, >>> zip and unzip (many times for each) nothing really special.. >>> >>> >> Thanks for clarifying this. Perha

Re: Problem :ant task "oracle:jaxwsGenImpl " on Jdev 11G Tech Preview 4

2008-07-29 Thread Chris Green
Does your classpath include reference to ant-oracle.jar? On 7/29/08, jyoti100 <[EMAIL PROTECTED]> wrote: > > Hi, > > I am running an ant task in Oracle JDeveloper 11g Tech Preview 4 > > the Task is as follows : > > > wsdl="contract/wsdl/${SRC_WSDL}" > /> > > > > The Output is : > > D:\Pras3\Web

Re: how to call a file in build.xml

2008-07-29 Thread Chris Green
Try the exec command. This allows you to call external command files. On 7/29/08, Kamran Hameed <[EMAIL PROTECTED]> wrote: > folks.. i am writting a java application that uses JNI. Now for generating c > files i am using Makefile. and for java files i am using ant[it is must that > i use Makefile]

Re: SCP in Ant

2008-07-01 Thread Chris Green
t;[EMAIL PROTECTED]> wrote: > http://ant.apache.org/manual/install.html#librarydependencies > > --- Chris Green <[EMAIL PROTECTED]> wrote: > > > I'm trying to SCP some files to a remote server and > > the message that I'm > > getting back implies

SCP in Ant

2008-07-01 Thread Chris Green
I'm trying to SCP some files to a remote server and the message that I'm getting back implies I'm missing an external jar from my system to be able to use the SCP function. Anyone any idea which this may be ? Chris

Re: Depends="init" problem

2008-06-16 Thread Chris Green
I use something like :- and then have the four targets init, a, b and c doing whatever. Regards Chris On Mon, Jun 16, 2008 at 9:50 AM, Guy Catz <[EMAIL PROTECTED]> wrote: > I have several targets, all depends on init - > > > ... > > > ... > > > ... > > and of course > ... > > > Now, I a

Re: calling Ant from java

2008-06-08 Thread Chris Green
Just done a google on 'calling ant from java' and one of the results I got was someone else asking the same question. http://www.junlu.com/msg/17340.html Purhaps the resulting answers to his question may help you. Chris On Mon, Jun 9, 2008 at 8:43 AM, Sonal Bannore < [EMAIL PROTECTED]> wrote:

Re: Calling a cmd batch file from Ant

2008-05-28 Thread Chris Green
gt; time. Therfore the properties > are set in the target or script that you call. The old values are lost if > you use the attribute > Inheritall=false > And using inside sets some properties to a value you > define. > > > > -- > Jürgen Knuplesch > -Ursprün

Re: Calling a cmd batch file from Ant

2008-05-28 Thread Chris Green
ld two: ${two} > > > one.properties: > # Specifies which parts for component 'one' to do > one=J > two=N > > two.properties: > # Specifies which parts for component 'one' to do > one=J > two=J > > > > Jan > > > > > -

Re: Calling a cmd batch file from Ant

2008-05-28 Thread Chris Green
this in loops made with antcontrb. > > > > -- > Jürgen Knupleschwww.icongmbh.de > icon Systemhaus GmbHTel. +49 711 806098-275 > Sophienstraße 40 > D-70178 Stuttgart Fax. +49 711 806098-299 > > Geschäftsführer: Uwe Seltmann > HRB Stuttgart 176

Re: Calling a cmd batch file from Ant

2008-05-28 Thread Chris Green
The reason I'm not using ant is that :- 1. My main build.xml script calls the component.xml script numerous times. 2. Each time the component.xml script is called, the variable 'component' needs to be set to something different. 3. Component.xml is generic therefore don't want to hard code anythin

Calling a cmd batch file from Ant

2008-05-28 Thread Chris Green
I am calling a dos batch file from an Ant script using the following code :- On the assumption that I get the Microsoft Windows Copyright info appear, I assume the above commands are running ok. The only trouble is, the contents / commands in the batch file don't seen to get execu