|
I’m not
sure what you mean, but if you refer to the ant command line of the form: ant [ant-options] [-Dname=value …] [targets] for
example: ant
–verbose –Ddebug=yes build you cannot
access ant-options, all Java properties are accessible in ANT using ${name}
(${debug} in this example), and the targets are defined in your build file. You
cannot add argument to your target, as in the (INVALID) command below: ant
–verbose –Ddebug=yes build -debugbuild instead,
use Java properties properties, as in: ant
–verbose –Ddebug=yes –Dmyargs=-debugbuild build Hope this
helps, --DD -----Original Message----- -----BEGIN PGP SIGNED MESSAGE----- |
-- To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]> For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>
