Mike,
Below a start script for cygwin users - maybe you want to put this on your
website or include it into the distribution.
Regards
Ralf
-------------
#!/bin/sh
# $Id: jdepend,v 1.5 2003/06/11 12:10:59 ralf Exp $
echo see http://www.clarkware.com/software/JDepend.html#howtouse
export JDEPEND_HOME=$AJARS_U/jdepend-2.6/
CLASSPATH=$CLASSPATH:$JDEPEND_HOME/lib/jdepend.jar
export CLASSPATH=`cygpath -pw $CLASSPATH`
case "$1" in
gui) shift;
java jdepend.swingui.JDepend $@
echo alternatively, you may want to use
http://www.clarkware.com/software/JDepend.html#ant;
;;
text) shift;
java jdepend.textui.JDepend $@
;;
xml) shift;
java jdepend.xmlui.JDepend $@
;;
*) echo print some help and version info!
echo if your output is empty, you might have used it on *.java instead
echo of *.class files!
;;
esac