A graphical snapshot of jMoby Ant's targets was created by using an Ant visualizer which is not part of jMoby but it is freely available from sourceforge. Once you download vizant.jar from there, you can use the following script for creating a graphical snapshot (assuming that a) you have an ant on your PATH, b) you have a 'dot' program from graphviz installed, and that c) you are in the jMoby directory where also a build.xml file is located): #!/bin/sh # # ./vizant # infile="`pwd`/build.xml" tmpfile=/tmp/vizant.$$ outfile=/tmp/antgraph.$$.png if [ ! -e "$infile" ] ; then echo "Cannot find 'build.xml' in `pwd`". exit 1 fi cat < ${tmpfile}.xml EOF ant -f ${tmpfile}.xml >/dev/null /bin/rm -f ${tmpfile}.xml ${tmpfile}.dot if [ -e "$outfile" ] ; then echo "Output written into: $outfile" echo "Try: display $outfile" fi ------------------------------------------------- Martin Senger $Id: vizant.txt,v 1.1 2005/05/19 20:18:53 senger Exp $ -------------------------------------------------