Re: [ Java 11 - Netbeans 9 ] Creating modular project, doesn't generate manifest file

2018-10-07 Thread Bernd Michaely
Hi, it seems NetBeans9.0 can't (yet) add a Main-Class to the MANIFEST.MF file to create "self-executing" jars/modules, it can be added later with the jar tool, e.g. in the example: jar --update --file=com.toy.anagrams.jar --main-class='com.toy.anagrams.ui.Anagrams' Bernd Am 07.10.18 um 0

Re: [ Java 11 - Netbeans 9 ] Creating modular project, doesn't generate manifest file

2018-10-07 Thread Geertjan Wielenga
Take a look at these modular projects created in NetBeans, they work out of the box: https://github.com/GeertjanWielenga/JigsawJavaModularProjectSamples Gj On Sat, Oct 6, 2018 at 11:42 PM Navaron Bracke wrote: > Hello, > > earlier today I had finished performing a software upgrade, > upgrading

[ Java 11 - Netbeans 9 ] Creating modular project, doesn't generate manifest file

2018-10-06 Thread Navaron Bracke
Hello, earlier today I had finished performing a software upgrade, upgrading Netbeans to version 9, Java to JDK 11 and my JavaFX SDK to the OpenJFX 11 SDK respectively. When this was done, I had decided to see how the new modular system in Java 11 works. Upon creating a new modular project and wr