I just registered to share how to get this running with Java from Oracle on Mac (10.11 tested):
Get the Java Runtime Environment for OSX on http://www.oracle.co...oads/index.html
Install it
In your terminal, type: export JAVA_HOME="/Library/Internet Plug-Ins/JavaAppletPlugin.plugin/Contents/Home"
java -version now gives you java version for ex. "1.8.0_66"
That's the cleanest way I found to install the latest JRE.
You can add the export JAVA_HOME line in your .bashrc to have java permanently in your Terminal:
echo export JAVA_HOME=\"/Library/Internet Plug-Ins/JavaAppletPlugin.plugin/Contents/Home\" >> ~/.bashrc
Now enter the following command: java -cp "bin/*" bluerender.BlueRender
Below example was rendered on OSX: