Hey Rob,
its one of those days that i'm able to login :) Thanks for continuing your work and releasing 0.9.4, i am already eager to test it.
on other news, i discovered a possible NPE in DirectoryFinder.java:82, which will occur under weird circumstances: when you start your application as a different user from within a directory which the new user is not able to access
e.g.:
#root@mybox:/root$ su test -c "java -jar /home/test/myapplication.jar"
or, the problem which i am having:
#root@mybox:/root$ /etc/init.d/tomcat start
the root cause will be:
String curDir = System.getProperty("user.dir");
which does exists, but is not accessible by the user.
regards,
eabin