Replacing chars in a property

2007-11-14 Thread Nicolai Kamenzky
Hi folks! I have a property which contains a path "C:\Documents and Settings \..." and I have to convert it to this format "c/Documents\ and\ Settings/...". Thus I have to replace "\" with "/" and so on. How do I do this? I can access my property with ${myProperty} and want to get another

Re: Ant 1.5 to 1.7 problem.

2007-11-14 Thread richardmonk
looks like it is caused by this ant151patch.jar; i am looking into it. Thanks David Weintraub wrote: > > What's this line?: > >> Using Ant151patch.jar > > That looks like the wrong jar file. That's probably for Ant 1.51. What > is this jarfile anyway? I can't find it on Google. > > It is in

Re: Question about "depends" attribute in the target element

2007-11-14 Thread Matt Benson
--- Steve Loughran <[EMAIL PROTECTED]> wrote: > David Weintraub wrote: > > If you invoke multiple targets on the command > line, each target will > > execute, and dependencies will execute > independently. There is no way > > of Ant to know if one of the targets you put on > the command line migh

Re: Official antLib for SVN

2007-11-14 Thread Steve Loughran
Julio Castillo wrote: What is the plan for releasing this AntLib? I went to the antlib page, and only antUnit and .NET libraries are available. No word on Subversion. There's no particular schedule for putting it out, but if you wanted to get involved on the developer mailing list, by pushin

Re: Question about "depends" attribute in the target element

2007-11-14 Thread Steve Loughran
David Weintraub wrote: If you invoke multiple targets on the command line, each target will execute, and dependencies will execute independently. There is no way of Ant to know if one of the targets you put on the command line might affect a later target. For example: $ ant first clean_first sec

Javadoc Task

2007-11-14 Thread Knuplesch , Jürgen
My javadoc-Task does not create Javadoc for all of the classes I give him in a filest. It also does not do anything, when I add certain classes. What is wrong?

RE: zipfileset help

2007-11-14 Thread Frederich, Eric P21322
Wouldn't that just include .jar files within examples.zip? It wouldn't actually unjar them and then include their contents into a new jar. My .jar files aren't in a big zip, they're in a directory called "lib". > -Original Message- > From: Bizard Nicolas (KIRO 41) > [mailto:[EMAIL PROTEC

RE: Extra LF with ?

2007-11-14 Thread Rebhan, Gilbert
Hi, -Original Message- From: Kev Jackson [mailto:[EMAIL PROTECTED] Sent: Wednesday, November 14, 2007 10:44 AM To: Ant Users List Subject: Re: Extra LF with ? /* Hi, try setting the fixlast attribute to false Kev */ yup, that's true by default, missed that. Thanks!! Regards, Gil

RE: ApacheCon Presentation

2007-11-14 Thread Rebhan, Gilbert
Hi, Kev -Original Message- From: Kev Jackson [mailto:[EMAIL PROTECTED] Sent: Tuesday, November 13, 2007 3:02 AM To: Ant Developers List; Ant Users List Subject: ApacheCon Presentation /* Hi all, As some of you probably know already, the HK OSSummit has been canceled due to lack of a

Re: Out of memory JUNIT-report

2007-11-14 Thread Steve Loughran
Knuplesch wrote: In my Ant file the junitreport Task runs out of memory! Where is the best place to increase the memory? 1. set ANT_OPTS environment variable to something like -Xmx512M 2. drop a copy of xalan (from xml.apache.org) into ANT_HOME/lib. This XSL engine consumes less memory than

Re: Xslt when run from other dir from maven gets "Provider for javax.xml.transform.TransformerFactory cannot be found"

2007-11-14 Thread Steve Loughran
Karr, David wrote: -Original Message- From: Steve Loughran [mailto:[EMAIL PROTECTED] Sent: Friday, November 09, 2007 2:49 AM To: Ant Users List Subject: Re: Xslt when run from other dir from maven gets "Provider for javax.xml.transform.TransformerFactory cannot be found" Karr, David

Re: Extra LF with ?

2007-11-14 Thread Kev Jackson
Hi, try setting the fixlast attribute to false Kev - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

RE: zipfileset help

2007-11-14 Thread Bizard Nicolas (KIRO 41)
Hi, code example from the ant apache online manual : Hope that fits your need. Nicolas -Original Message- From: Frederich, Eric P21322 [mailto:[EMAIL PROTECTED] Sent: Tuesday, November 13, 2007 7:06 PM To: user@ant.apache.org Subject: zipfileset help Hello. Is it possible to inclu

Out of memory JUNIT-report

2007-11-14 Thread Knuplesch , Jürgen
In my Ant file the junitreport Task runs out of memory! Where is the best place to increase the memory? Is it possible to fork junitreport? -- Jürgen Knupleschwww.icongmbh.de icon Systemhaus GmbHTel. +49 711 806098-275 Sophienstraße 40 D

AW: zipfileset help

2007-11-14 Thread Knuplesch , Jürgen
Solution1: If you use Eclipse you can define the classpath in Eclipse (with all the jars) and then import it via geteclipseclasspath from Ant4eclipse project. Solution2: The hard way I solved this problem in a similar case was: 1.Using fileset to get the jar files. 2.Using the for Task from an