junit haltonfailure doesn't

2007-10-10 Thread Kendall Shaw
I am using junit 4.3.1 and ant 1.7, I have haltonfailure="true" on the junit element, but all of my tests are executed even though some fail. Can I make it halt on failure? Or am I misunderstanding how that is supposed to work?

Running task with an "interactive" executable

2007-10-10 Thread terrance grahn
I am trying to run an executable; however, I keep getting stumped on one part. I am able to run the executable correctly, but there is a point in this executable that prompts the user for a password (and then asks them to confirm it again). I want to send this through the Ant task, but nothing I

Can we load task into Ant Core classloader

2007-10-10 Thread Vishal Vishnoi
I would like to use loadref attribute of taskdef to load a given task into Ant's Core classloader. Is this possible? I've gone through Ant's manual and also some Google search results, but none of them talk about any predefined loadref for Ant's core loader. Thanks, --Vishal Notice: This ema

RE: called from a nested Ant session started with - not terminating?

2007-10-10 Thread Martin Gainty
Hi keith- pure speculation but what if your start_weblogic.xml uses start /B (instead of cmd.exe /C).. Anyone?Martin--__Disclaimer and confidentiality noteEverything in this e-mail and any attachments relates to the official business of Sender. This t

Re: How to see the command issued by apply task?

2007-10-10 Thread glenn opdycke-hansen
I usually the command before executing it. This way it gets in the log. --glenn On 10/10/07, Krzysztof Kucybala <[EMAIL PROTECTED]> wrote: > > Hi, > > I have a question as in the subject. I'm trying to run a command with > several arguments passed on a set of files, and I'd really like to see >

Re: How to see the command issued by apply task?

2007-10-10 Thread Matt Benson
Run ant in verbose (-v) mode. HTH, Matt --- Krzysztof Kucybala <[EMAIL PROTECTED]> wrote: > Hi, > > I have a question as in the subject. I'm trying to > run a command with > several arguments passed on a set of files, and I'd > really like to see > the actual command that's being issued to th

How to see the command issued by apply task?

2007-10-10 Thread Krzysztof Kucybala
Hi, I have a question as in the subject. I'm trying to run a command with several arguments passed on a set of files, and I'd really like to see the actual command that's being issued to the os, cause something's not ok and I'm running out of ideas. Can someone help me on this? Best regards

called from a nested Ant session started with - not terminating?

2007-10-10 Thread Keith Hatton
Hi, Versions: Ant 1.6.2 and 1.6.5, Java 1.5.0_05. I have an Ant script that needs to call an Ant target with a different environment (specifically with a different -lib setting) so I use to run this in a separate process as follows (the -lib is removed from the arg sections here because the prob

Re: help regarding ANT.

2007-10-10 Thread David Weintraub
What task is being called on line 222 of your build.xml file? What this is saying is that a class needed for a particular task cannot be found. It could be a missing *.jar file. I believe you'll find that you're trying to implement the "deploy" task of Tomcat. Since you're getting the classfile r

RE: help regarding ANT.

2007-10-10 Thread cknell
You may get more help if you give more information. Ant is telling you that it cannot find a class that it needs. This is very likely a classpath issue (that's something that takes a while for new Java programmers to get used to). Post your build.xml file and we may be able to offer more help af

AW: help regarding ANT.

2007-10-10 Thread Jan.Materne
Its often answered and so you should also try searching the mailing list archive 2007-08-10: http://marc.info/?l=ant-user&m=118674067112745&w=2 2005-09-01: http://marc.info/?l=ant-user&m=112556438717871&w=2 2005-06-01: http://marc.info/?l=ant-user&m=111766965302076&w=2 Jan >-Ursprüngliche

help regarding ANT.

2007-10-10 Thread Ravishankar BV.
Hi all, I'm new to Apache and ANT (and even java tools). I'm purely into "C". So, sorry if this looks silly and trivial. I have a build.xml file and when I run: $ ant -f build.xml generate.html, I get an error: /build.xml:202: taskdef class org.apache.catalina.ant.DeployTask cann

AW: Accessing Properties from Sub-Projects

2007-10-10 Thread Knuplesch , Jürgen
I used antcallback from antcontrib in my Buildfile: So I got back if one of my tests failed. antFetch is the same für calling external Buildfiles. Use http://sourceforge.net/project/showfiles.php?group_id=36177 to get antcontrib. -- Jürgen Knuplesch

AW: AW: Showing current classpath Ant is using in Build executing state

2007-10-10 Thread Knuplesch , Jürgen
Thank you! This is great, because I always was thinking of sth. Like that. There are so many problems with the classpath... -- Jürgen Knupleschwww.icongmbh.de icon Systemhaus GmbHTel. +49 711 806098-275 Sophienstraße 40 D-70178 Stuttgart

Re: how can I copy a directory of files to lower case equivalents?

2007-10-10 Thread Alx G
Steve Loughran wrote: > > Alx G wrote: >> Hi, >> >> Does anyone know if there's anything in Ant that can copy files from a >> directory to another directory but change all the file names to lower >> case? >> >> e.g. >> >> working/some_folder/etc/Blah.jpg => dist/some_folder/etc/blah.jpg >> ..