Relative Paths in Imported Files

2008-08-17 Thread Francisco Tolmasky
I have a common.xml file that I import in all my build.xml throughout my project (subdirectories included). One of the tasks defined in this common.xml has to reference a file in a java task, as so:

SubAnt BaseDir Woes With Java Task

2008-08-17 Thread Francisco Tolmasky
I am having issues with the basedir not being correct in SubAnt again. This time it's because it seems that the java task does not seem to respect the basedir. I have the following structure: My-Project/ build.xml Tools/ Tool1/ build.xml Tool2/

RE: make a string lowercase

2008-08-17 Thread Martin Gainty
I created a separate target to uppercase the string call the java class upperstore the results to outputproperty out = ${out} (source file to convert attached) anyone else?Martin __ Disclaimer and confidentiality note Everything in this e-

Re: how much time an action took

2008-08-17 Thread Dale Anson
Antelope has this too. See docs for the stopwatch task at: http://antelope.tigris.org/nonav/docs/manual/bk03ch10.html You might also be interested in the performance monitor, which can give you a report on the time it takes for each target to run: http://antelope.tigris.org/nonav/docs/manual

Re: make a string lowercase

2008-08-17 Thread Dale Anson
Antelope has this, see docs here: http://antelope.tigris.org/nonav/docs/manual/bk03ch13.html Dale Guy Catz wrote: Is it possible to make a string lowercase (or uppercase)? Something like ${myVar} can be "Release", while after calling , ${newVar} will be set to "release". Does somethi

how much time an action took

2008-08-17 Thread Guy Catz
it is possible to tell how much time took a target to run, or a process within a target, like exec? something like ... the action took ${myTime} ... is there something like this available?

make a string lowercase

2008-08-17 Thread Guy Catz
Is it possible to make a string lowercase (or uppercase)? Something like ${myVar} can be "Release", while after calling , ${newVar} will be set to "release". Does something like this exist? Thanks.

Re: Dynamic "depends" for debug/release builds

2008-08-17 Thread cowwoc
Thanks guys ;) Gili Dominique Devienne-2 wrote: > > On Fri, Aug 15, 2008 at 11:13 PM, cowwoc <[EMAIL PROTECTED]> wrote: >> I've got Java code that makes use of JNI so my build process is slightly >> different depending on whether debug or release is being built. I'd like >> to >> define the fo