Distcc makes it easy to distribute a C or C++ compile job across a number of machines, and is a godsend for working with large, frequently-built codebases.
An increasing number of our large projects are built in Java these days, however. Does anyone know of something equivalent or similar for Java? While it would be great if it would go down to the javac level, our multi-module projects would benefit from being able to distribute each maven 2 sub-project to a different machine. (Tying into maven might actually be better, as that would make it possible to distribute tests and packaging, which often take a significant portion of our build time.)
Thanks for any information or pointers!