Re: MarlinFX upgrade 0.7.5

2017-04-25 Thread Jim Graham
I've reviewed the code and run a number of tests. Things look fine. I spotted at least one thing that I brought up in the 2D Marlin review, but since the 2 source bases are moving towards synchronizing with each other I didn't look too closely since many of the changes in the 2D Marlin update a

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