mojohaus / appassembler

https://www.mojohaus.org/appassembler/
MIT License
93 stars 49 forks source link

Make booter computed classpath available to app #86

Closed adamretter closed 5 years ago

adamretter commented 5 years ago

At present the classpath computed by the booter is not directly available to the booted application. With Java 8 it is possible to learn the classpath by examining the parent URLClassLoader, however with Java 9 and newer this becomes impossible due to the module system.

The Booter should make the classpath directly available to the booted application, possibly through a system property or argument.