RE: using ivy iwth artifactory

2010-12-14 Thread James Carr
tion of spring-test? That will cause this error. Maarten - Original Message From: James Carr To: "ivy-u...@ant.apache.org" Sent: Mon, December 13, 2010 8:33:38 PM Subject: using ivy iwth artifactory Hi all, I'm currently trying to resolve our ivy dependencies using

Re: Running ant from a windows batch file

2007-04-12 Thread James Carr
h file execure instead of directly invoking ant use call ant.. e..g Instead of #REM This is a batchfile ant -f mybuild.xml echo doing other tasks use #REM This is a batchfile call ant -f mybuild.xml echo doing other tasks HTH, Hari On 4/12/07, James Carr <[EMAIL PROTECTED]> wrote: > >

Running ant from a windows batch file

2007-04-12 Thread James Carr
Hi All, I am running ant from a windows batch file, and I am having a strange problem. The ant script completes successfully, but the rest of the batch file (which doesnt depend on anything the ant script does) does not run after the batch file runs. Any ideas? let me know if you need further de

Re: On fail listener?

2007-01-12 Thread James Carr
sf/ant/core/trunk/src/main/org/apache/tools/ant/BuildListener.java Jan >-Ursprüngliche Nachricht----- >Von: James Carr [mailto:[EMAIL PROTECTED] >Gesendet: Donnerstag, 11. Januar 2007 03:35 >An: Ant Users List >Betreff: On fail listener? > >Is there a way to attach a cal

On fail listener?

2007-01-10 Thread James Carr
Is there a way to attach a callback that is called when a build fails, or even just ends, from within a custom task? Thanks, james - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Anyway to make an input task have stars?

2007-01-09 Thread James Carr
Hi All, Is there anyway to make an input task use stars for it's input? I am trying to prompt the user running the ant script for a password. Thanks, James - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-

Running PLUnit from ant?

2006-08-28 Thread James Carr
Hi, I've been busy using ant to automate our unit and fitnesse tests, and the next step is to automate running our plunit tests... however I could find no easy documentation on the matter. Anyone ever do it before? Thanks, James --

Any way to import an ant script inside a target?

2006-08-24 Thread James Carr
Hi All, I am trying to set up an ant script from cruise control to pull projects in from CVS, build them, and run all tests. The problem that I have is that I want to use the ant file that is in the project that I check out as it contains the classpath that is specific a project and changes for e

Re: pass -verbose flag to a sub project

2006-06-13 Thread James . Carr
I'm not passing the -verbose flag to the parent ant process so there is nothing to inherit. ~ James Carr "Scot P. Floess" <[EMAIL PROTECTED]> 13/06/2006 11:44 Please respond to "Ant Users List" To Ant Users List cc Subject Re: pass -verbose flag to a

pass -verbose flag to a sub project

2006-06-13 Thread James . Carr
I would like to pass the command line argument -verbose to a ant sub project using the task, so I can get detailed output from the sub project. ie The task does not take options? Any ideas? I'm using. Apache Ant version 1.6.5 compiled on June 2 2005 ~ James