Re: Capturing XML validation output

2005-07-11 Thread Ivan Ivanov
Yaakov, You need to iterate over your directories and do the validating operation for each of them. You may find task[1] useful (untested pseudo code): HTH Ivan [1]http://ant-contrib.sourceforge.net/tasks/tasks/for.html --- Yaakov Chaikin <[EMAIL PROTECTED]> wrot

Re: Capturing XML validation output

2005-07-11 Thread Yaakov Chaikin
Thanks to both of you for replying. However, how would I have each directory have its own dtdOutput.txt? Thanks, Yaakov. On 7/10/05, Kristian Perkins <[EMAIL PROTECTED]> wrote: > I didn't think you could nest tasks inside , in which case you might > like to try something like this untested versi

Re: ant task and Ant options

2005-07-11 Thread Jeffrey E Care
One of the gurus may have a better solution, but I think that you're going to have to use the or tasks to fork a new VM for Ant in order to pass those options. JEC -- Jeffrey E. Care ([EMAIL PROTECTED]) WebSphere Build SWAT Team Lead WebSphere Build Tooling Lead (Project Mantis) https://w3.op

ant task and Ant options

2005-07-11 Thread Paul Munsey \(pmunsey\)
I'm using the ant task to start a secondary build and I want to pass along logger options. Does anyone know how to pass along either the '-e' option or '-logger ...' option into an ant task? The command line options I use for the initial Ant command do not get passed down into the secondary ant ca

Re: CVS Tag with ANT or CruiseControl

2005-07-11 Thread Ivan Ivanov
Michael, --- KrustyDerClown <[EMAIL PROTECTED]> wrote: > Hello, > > i have this little ANT target: > > > dest="${cvs.dir}" failonerror="yes"> > > > > > > Is there an easy solution to increase the tag ? You can increase the tag by using javascript (or

Re: CVS Tag with ANT or CruiseControl

2005-07-11 Thread RPearse
Look into the buildnumber tag and try to tie your buildnumber to your tag. ant-contrib has a Math tag for handling the arithmetic. Or just keep a tag.properties file in your source. >From an SCM point-of-view, you should tell CVS what you want, not the other way around. Robert "KrustyDer

CVS Tag with ANT or CruiseControl

2005-07-11 Thread KrustyDerClown
Hello, i have this little ANT target:

Re: Fileset in Copy Task

2005-07-11 Thread KrustyDerClown
Hello, i am sorry. I am stupid. :) I have another include: I see it when i start with -debug. Thanks for the help. - Original Message - From: "Conor MacNeill" <[EMAIL PROTECTED]> To: "Ant Users List" Sent: Monday, July 11, 2005 2:37 PM Subject: Re: Fileset in Copy Task KrustyDer

Re: Fileset in Copy Task

2005-07-11 Thread Conor MacNeill
KrustyDerClown wrote: > Hello, > > i have a little problem with my copy task in ANT. > > I have the following target: > > > > > > > > > > So ... thats works ... BUT ... the task copied the WEB-INF dir from > C:/workspace also to C:/temp. > > I am really

Fileset in Copy Task

2005-07-11 Thread KrustyDerClown
Hello, i have a little problem with my copy task in ANT. I have the following target: So ... thats works ... BUT ... the task copied the WEB-INF dir from C:/workspace also to C:/temp. I am really confused why .. :) All other dir's in C:/workspace like "l

error with jasper2 task

2005-07-11 Thread Prasad Iyer
I am trying to use precompiled jsp's in my application. I get weird error. I am using tomcat version 5. I have defined struts.jar in "lib.path" Can anyone help me out Following is the ant task

Re: Generate manifest classpath with relative paths

2005-07-11 Thread Conor MacNeill
Martin Olsson wrote: > Hi, > > At runtime my program is stored like this: > > ./myprogram.jar > ./lib/commons/commons-net.jar > ./lib/commons/commons-configuration.jar > ./lib/spring/spring_jar1.jar > ./lib/spring/spring_jar2.jar > ./lib/some/other/jarfile.jar > > There is a ton of other .jar

Generate manifest classpath with relative paths

2005-07-11 Thread Martin Olsson
Hi, At runtime my program is stored like this: ./myprogram.jar ./lib/commons/commons-net.jar ./lib/commons/commons-configuration.jar ./lib/spring/spring_jar1.jar ./lib/spring/spring_jar2.jar ./lib/some/other/jarfile.jar There is a ton of other .jar files too organized in the directory tree below