Re: Project Jigsaw Multi-module Compilation

2018-09-22 Thread Martin Desruisseaux
Le 22/09/2018 à 20:39, Robert Scholte a écrit : > You can't. > > The Java 9 multiple module compilation doesn't fit into the Maven model. > > For Maven, every deliverable requires its own pom, hence a separate > Maven module. > Or alternatively, we can try to get Maven to evolve. Otherwise we

Re: Project Jigsaw Multi-module Compilation

2018-09-22 Thread Robert Scholte
You can't. The Java 9 multiple module compilation doesn't fit into the Maven model. For Maven, every deliverable requires its own pom, hence a separate Maven module. You could have a look at Pro[1], an experimental build tool inspired by Maven and all JPMS features. thanks, Robert [1]

Project Jigsaw Multi-module Compilation

2018-09-22 Thread Bruce Alspaugh
The quick-start guide for project Jigsaw describes how to compile multiple Java 9 modules with one javac command: http://openjdk.java.net/projects/jigsaw/quick-start How do I configure Maven to do that rather than compile each module separately? Bruce