0
I am testing the java 9 module system and so far I have been able to create a project in eclipse (Maven or java) and create the module-info by the option : Right-click on the project + configure + create module-info.
But if you need to separate the project into several modules? Is it possible to do this in the same project or should I create a project for each module? If it is possible to create multiple modules in the same project in eclipse how to do it?
I think you’d have to use one project per module and one module per project.
– Victor Stafusa
I believe that this will be determined by the POM files, each POM or each Maven project will have its own configs, 1 pom == 1 config... Windows may have more than one Maven project centralized within a larger project, each with its POM and its config, and a bigger project setting everything up. (but I’m not sure).
– Michel Simões