Why is it so hard to do this in Java? If you want to have any kind of module system you need to be able to load JAR files dynamically. I\'m told there\'s a way of doing it b
I personally find that java.util.ServiceLoader does the job pretty well. You can get an example here.