I want to let the users of my app, which is in turn an app container (app contains subapps), add java jars to their jython path.
I let the subapp managers write thir own extensions in jython, but some of the functionality they want to add needs additional jars. For example, if they want to check a svn repo, they need the svn access jars, which I would rather not copy to /WEB-INF/lib, but rather to /subapps/appX/lib.
While I can add a class directory structure to sys.path, it seems that I can't add a jar. Is it possible?