DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG 
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://issues.apache.org/bugzilla/show_bug.cgi?id=21421>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND 
INSERTED IN THE BUG DATABASE.

http://issues.apache.org/bugzilla/show_bug.cgi?id=21421

[Patch] to allow to run several targets without rerunning their dependencies





------- Additional Comments From [EMAIL PROTECTED]  2004-09-01 20:08 -------
Regarding the ParallelExecutor--I may.  This is not trivial however.  Assuming 
the Executor does not get shot out of Ant, anyone could write it.  As for the 
command-line option, my concern is when would they end?  Someone else can come 
along next week and ask for an option for Ant to run everything except for the 
specified targets ... and so on.  If you really needed a switch to do this, 
it's not impossible to do it yourself... for example, if you added this to 
your .antrc (assuming you use the "ant" script):

_ant_exec_args=

for arg in "$@" ; do
  if [ "$arg" = "--single" ] ; then
    arg=-Dant.executor.class=org.apache.tools.ant.helper.SingleCheckExecutor
  fi
  _ant_exec_args="$_ant_exec_args \"$arg\""
done

ant_exec_args=$_ant_exec_args
unset _ant_exec_args

You have aliased
 "-Dant.executor.class=org.apache.tools.ant.helper.SingleCheckExecutor"
 to "--single".

PS:  guess who wrote "I have my own ANT launcher script that preconfigures
my build environment, I can just add the option into it."

;)

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to