=o= Some have been posted to this list; check the archives:
http://www.perforce.com/lists/jamming/threads.html
The "Jambase for java" messages from Ames Carlson is the most
informative.
=o= My own inclination has been to allow the javac compiler to
use its own dependency checking, and not to duplicate (and thus
separately maintain) this information in a Jamfile or Makefile.
Unfortunately, I've learned that javac's dependency checking is
not reliable. The only reliable way to get interdependent classes
to compile together is to feed them all to javac at once:
% javac *.java
<_Jym_>