Re: Yet another basic question about Ant

2009-09-04 Thread veena pandit
Hi Chris, FYI, I mailed you the Make files today. Thanks, Veena On Tue, Sep 1, 2009 at 3:07 PM, Chris Green wrote: > 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:5

Re: Proposal for improving Ant output (post-1.7)

2009-09-04 Thread Francis GALIEGUE
On Fri, Sep 4, 2009 at 21:35, David Weintraub wrote: > You're thinking about Ant as a programming language. You assume that Ant > tries to execute your target, sees the depends, and then executes that > first. > I have trouble with this analogy. I'm not thinking of ant as a programming language a

Re: Proposal for improving Ant output (post-1.7)

2009-09-04 Thread David Weintraub
On Fri, Sep 4, 2009 at 3:35 PM, David Weintraub wrote: > Use the -default flag, and you can see it build the build dependency step. > DEBUG FLAG! USE THE DEBUG FLAG! It should have been -debug and not -default. I hate it when I do these stupid mistakes. -- David Weintraub qazw...@gmail.com

Re: Proposal for improving Ant output (post-1.7)

2009-09-04 Thread David Weintraub
You're thinking about Ant as a programming language. You assume that Ant tries to execute your target, sees the depends, and then executes that first. Ant is a build description tool. The very first thing Ant does is to build a complete matrix dependency of all targets and then executes the target

access cvs with ssh in windows

2009-09-04 Thread Júlio Cesar Bueno Cotta
Hello I am trying t access a cvs server from a ant task (running in a Windows system)..When a test in a Linux system everything goes right..but in windows the task doesnot conect in the cvs server.. the output in Windows [cvs] cvs rdiff: warning: unrecognized response `'ssh' nÆo ‚ reconhecido

Re: search directories and putting search result in a variable

2009-09-04 Thread Francis GALIEGUE
On Fri, Sep 4, 2009 at 12:03, akentner wrote: > > Hi there, > > I'm a ant newbie. I've already search for my topic, but I haven't found my > problem. > > So my problem: > > I have a tmp directory where other directories have been created (names are > hashes). In an ant job, how can I find the last

search directories and putting search result in a variable

2009-09-04 Thread akentner
Hi there, I'm a ant newbie. I've already search for my topic, but I haven't found my problem. So my problem: I have a tmp directory where other directories have been created (names are hashes). In an ant job, how can I find the last generated hash directory and put the result in a variable, so

Re: How to run java source code in ant target

2009-09-04 Thread Gao Lin
"http://ant.apache.org/manual/OptionalTasks/script.html"; this works for me, thanks Thanks Jan too, but the script is much simpler. 2009/9/4 : > Use +. > > Jan > >>-Ursprüngliche Nachricht- >>Von: Avlesh Singh [mailto:avl...@gmail.com] >>Gesendet: Freitag, 4. September 2009 10:27 >>An

AW: How to run java source code in ant target

2009-09-04 Thread Jan.Materne
Use +. Jan >-Ursprüngliche Nachricht- >Von: Avlesh Singh [mailto:avl...@gmail.com] >Gesendet: Freitag, 4. September 2009 10:27 >An: Ant Users List >Betreff: Re: How to run java source code in ant target > >Looking for this? - >http://ant.apache.org/manual/OptionalTasks/script.html > >C

Re: How to run java source code in ant target

2009-09-04 Thread Avlesh Singh
Looking for this? - http://ant.apache.org/manual/OptionalTasks/script.html Cheers Avlesh On Fri, Sep 4, 2009 at 1:51 PM, Gao Lin wrote: > HI: > > Is there an existed ant target to execute plain java source code? > > I need to run one java statement before junit target, I don`t want > to creat

How to run java source code in ant target

2009-09-04 Thread Gao Lin
HI: Is there an existed ant target to execute plain java source code? I need to run one java statement before junit target, I don`t want to create a separated main class for this, it is possible to run the code directly? like: System.out.println("execute plain Java source