In addition to RegionJukebox, there are a few other plugins that keep failing to get events passed:
WormholeExtreme
BattleArena
There may be more but the errors are the same and cause PermGen memory exceptions:
java.lang.OutOfMemoryError: PermGen space
There is a workaround for those who can afford it and/or are able to customize their buckkit startup parameters:
in the java startup add this:
-XX:+UseConcMarkSweepGC -XX:MaxPermSize=128m
so an example for a 4gig environment would be:
java -Xms4096M -Xmx4096M -XX:+UseConcMarkSweepGC -XX:MaxPermSize=128m -jar craftbukkit.jar -o true
PAUSE
The drawback is that limkiting the PermSize does cause some performance impacts, however so far they are manageable and users don't really notice much difference.
Suggestion for developer:
Add in a section to the config where you can manually list plugins to ignore and/or include
The problem with RegionJukebox however is really the RegionJukebox Plugin is not handling the passed Events correctly I think.
Unfortunately for me that's the only plugin I need WGRegionEvents for! lol!