Re: deployable javafx app

2019-12-02 Thread Chuck Davis
Chris, the documentation @ maven.apahce.org is getting better all the time. It's even gotten understandable lately. Certainly enough to get you started. Start in the "User Center". On Mon, Dec 2, 2019 at 6:22 PM Chris Olsen wrote: > Hello, Everyone -- > > I have a (possibly) related

Re: deployable javafx app

2019-12-02 Thread Chris Olsen
Hello, Everyone -- I have a (possibly) related question. I am also writing JavaFX programs and I am thinking of moving from Ant to Maven (and Java 8 to Java ??). Is there a good resource about Maven that non-developers would benefit from? Java is about my 5th language so I'm OK with

Re: [ scala ] Just asking for update on Scala for NetBeans

2019-12-02 Thread Luff,Chris
Long story short - at the moment the Scala compiler is 2.11.3 on JDK 1.8 but you can build your code on NetBeans 11.2 with JDK 11 and Maven. I recently removed the dependency on a specific NetBeans version. Have you tried to install on 11.1? On 28 Nov 2019, at 13:54, Mark Phipps

Re: deployable javafx app

2019-12-02 Thread Luff,Chris
Right, it depends on if you want modular or non-modular and that is generally predicated by what kind of dependencies you include that you cannot influence. If you want a non-modular binary you can use a shaded JAR with a launcher class that literally calls the main method of the main that