I had some severe trouble to get Mule playing on OSX 10.9 (Maveriks) unsing JDK 1.7
java -version
java version "1.7.0_45"
Java(TM) SE Runtime Environment (build 1.7.0_45-b18)
Java HotSpot(TM) 64-Bit Server VM (build 24.45-b08, mixed mode)
Trying it with the default java crashed (when starting a game) with
Dec 08, 2013 11:13:34 AM com.turborilla.mule.view.MuleGameContainer$1 run
INFO: Pixel format: Samples=0 Alpha=0 Depth=8 Stencil=0
_NSJVMLoadLibrary: NSAddLibrary failed for /libjawt.dylib
JavaVM FATAL: lookup of function JAWT_GetAWT failed. Exit
log_init.txt contains
INFO [Properties.<init>] VERSION: 1.3.6
INFO [Properties.<init>] Classpath: data.jar
INFO [Properties.<init>] Java VM: 24.45-b08
INFO [Properties.<init>] Java Runtime: 1.7.0_45-b18
INFO [Properties.<init>] OS: Mac OS X 10.9 x86_64
INFO [Properties.<init>] Java Library Path: lib
INFO [Properties.<init>] Max Memory: 954728448
INFO [Properties.<init>] Avaialble Processors: 2
INFO [PropertiesBase.readFromFile] Reading Settings from file settings.txt
INFO [SubstanceLoader.initLookAndFeel] Window Skin: Default
I finally made it work by installing JDK 1.6 (as the game advised me first) and then calling
cd /Applications/mule.app/Contents/Resources/Java/data/
/System/Library/Java/JavaVirtualMachines/1.6.0.jdk/Contents/Commands/java -Xms256m -Xmx1024m -Djava.library.path=lib -jar data.jar
This must me done in the Terminal.app