Search the web
Sign In
New User? Sign Up
jdepend
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Show off your group to the world. Share a photo of your group with us.

Best of Y! Groups

   Check them out and nominate your group.
Having problems with message search? Fill out this form to ensure your group is one of the first to be migrated to the new message search system.

Messages

  Messages Help
Advanced
shell script to start jdepend under cygwin!   Message List  
Reply | Forward Message #29 of 72 |
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




Wed Jun 11, 2003 1:29 pm

ralfhauser
Offline Offline
Send Email Send Email

Forward
Message #29 of 72 |
Expand Messages Author Sort by Date

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:...
Ralf Hauser
ralfhauser
Offline Send Email
Jun 11, 2003
1:28 pm

... Thanks, Ralf! Mike...
Mike Clark
clarkware
Offline Send Email
Jun 12, 2003
2:57 am
Advanced

Copyright © 2009 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines - Help