Re: JPackage and JavaFX

2020-08-22 Thread Davide Perini
Just for reference, I was using maven to bundle JavaFX, using OpenJDK I had that error, using AdoptOpenJDK solved the problem. Regards, Davide Il 20/08/2020 17.07, Kevin Rushforth ha scritto: That should be "This list is *not* the right place..." On 8/20/2020 8:06 AM, Kevin Rushforth wrote: T

Re: JPackage and JavaFX

2020-08-21 Thread Davide Perini
But I haven't installed JavaFX manually, I'm getting it with maven, like this: this is the pom.xml https://github.com/sblantipodi/firefly_luciferin/blob/master/pom.xml as you can see I get JavaFX from maven repos. It works on Windows. Any idea? Thanks Davide Il 20/08/2020 07.15, Tobias Oelgart

Re: JPackage and JavaFX

2020-08-20 Thread Kevin Rushforth
This list is be the right place to discuss the javapackager tool (regardless of whether or not it is a fork of the old java(fx)packager tool that used to be part of openjfx). -- Kevin On 8/20/2020 7:12 AM, Bardot Jérôme wrote: i personaly try to use javapackager https://github.com/fvarrui/Ja

Re: JPackage and JavaFX

2020-08-20 Thread Kevin Rushforth
That should be "This list is *not* the right place..." On 8/20/2020 8:06 AM, Kevin Rushforth wrote: This list is be the right place to discuss the javapackager tool (regardless of whether or not it is a fork of the old java(fx)packager tool that used to be part of openjfx). -- Kevin On 8/20

Re: JPackage and JavaFX

2020-08-20 Thread Bardot Jérôme
i personaly try to use javapackager https://github.com/fvarrui/JavaPackager for me this tool need to be hightlight and it need feedback On 20/08/2020 02:52, Davide Perini wrote: > Hi all, > is there someone able to use JPackage with JavaFX under ubuntu with JDK14? > > When I try to use jpackage

Re: JPackage and JavaFX

2020-08-19 Thread Tobias Oelgarte
I have no problem using jpackage together with JDK 14 and JavaFX 14/16 under Ubuntu 18.04. My guess is that you run the jpackage command from a different JDK version, which loads it's own module "java.base" and references it's own module "jdk.management.jfr". This is different from the one fou

Re: JPackage and JavaFX

2020-08-19 Thread Kevin Rushforth
I've not seen the module FindException with jfr before, but one thing I do see is that you will need to use the JavaFX jmods rather than the sdk. Otherwise, jlink (which is invoked by jpackage) won't produce a runnable application. -- Kevin On 8/19/2020 5:52 PM, Davide Perini wrote: Hi all,