Is this available in Ant 1.4? I can't seem to get it to work.
We're invoking ant via our own wrapper which calls the normal ant
wrapper:
CLASSPATH="..."
export CLASSPATH
ANT_ARGS="-logger org.apache.tools.ant.NoBannerLogger"
export ANT_ARGS
"$SMSISHARE/third-party/ant/v1.4.1/bin/ant" $*
It DOES work if I change the last line to:
"$SMSISHARE/third-party/ant/v1.4.1/bin/ant" $ANT_ARGS $*
-----Original Message-----
From: Diane Holt [mailto:holtdl@yahoo.com]
Sent: Tuesday, August 13, 2002 10:39 AM
To: Ant Users List
Subject: RE: skip target silent
--- Dominique Devienne <DDevienne@lgc.com> wrote:
> No. But you can put it in ANT_OPTS [...]
Actually, for stuff like -logger, you want to use ANT_ARGS -- ANT_OPTS
is
passed to the JVM, ANT_ARGS is passed to Ant.
Diane
--
To unsubscribe, e-mail: <mailto:ant-user-unsubscribe@jakarta.apache.org>
For additional commands, e-mail: <mailto:ant-user-help@jakarta.apache.org>
|