Finally got it to compile! So one thing missing from the examples that Red posted include was how to set up the import statements for Listener. Here's a more complete example of a simple listener event. I also learned that in Netbeans that its better to select "Java Class" as your project type, not "Java Application". The difference is an application has to have a class identified as the main class and must have a main method. However the "Java Class" is great if your writing a small plugin which is exactly what we are doing here! However, for testing purposes you can still include a main method (like below) but it doesn't have to do anything. This is still good if you want to test the application on its own. Not sure how we do that unless someone knows how to trigger events.
To test the class on its own you can modify the main method like this to create an instance of itself. Of course this wont do much because this is event driven so the message will never display:
Finally you just build the jar. Make sure your package matches the package line in the source code. Simply right-click on the package and compile it. Then browse to where your project is saved on your drive and find the jar file under dist
To install the package, I'm still a bit confused about. Red51 said your probably just drop a jar into scripts or plugins. The process seems not entirely finalized so I'll just play with it more for now. My work computer can barely handle running Rising World even at absolute minimal draw distances.