Re: javapackager - partially self-contained apps in JDK 9

2017-04-25 Thread Chris Bensen
The code that I included below will do what you want with modular JARs. I hope to get this as a feature of the Java Packager which would be called Pugins, but there’s only so much time, which is why I provided you with a portion of my prototype code. Chris > On Apr 25, 2017, at 12:11 PM, Alan

Re: javapackager - partially self-contained apps in JDK 9

2017-04-25 Thread Chris Bensen
> On Apr 11, 2017, at 10:43 AM, Alan Snyder wrote: > > I have run into a problem in moving my macOS apps from JDK 8 to 9. The issue > relates to using MySQL via JDBC. > The connector class name is fixed. The class is loaded using Class.forName(). > However, there can be different versions > of

Re: javapackager - partially self-contained apps in JDK 9

2017-04-25 Thread Scott Palmer
> On Apr 11, 2017, at 1:43 PM, Alan Snyder wrote: > > I have run into a problem in moving my macOS apps from JDK 8 to 9. The issue > relates to using MySQL via JDBC. > The connector class name is fixed. The class is loaded using Class.forName(). > However, there can be different versions > of

javapackager - partially self-contained apps in JDK 9

2017-04-25 Thread Alan Snyder
I have run into a problem in moving my macOS apps from JDK 8 to 9. The issue relates to using MySQL via JDBC. The connector class name is fixed. The class is loaded using Class.forName(). However, there can be different versions of the connector in different JAR files, and the proper version migh