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:
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/
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-
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
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
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?
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.
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