xmolecules/jmolecules

Define JPMS automatic module name for all modules

sebastienh opened this issue · 1 comments

Hi!

I would like to use the library in a Intellij Java project which uses Java 9 modules. The problem is that if a library doesn't declare an Automatic-Module-Name in the Jar MANIFEST the library falls into the unnamed module, and as we speak, Intellij does not support unnamed module.

It's quite an easy addition, as described in Automatic-Module-Name: Calling All Java Library Maintainers.

Thanks for this library!

Needed this for the LeasingNinja.io, too... Will be fixed in version 1.2. For the time being you can use this into your module-info.java:

requires jmolecules.ddd;

In the future it will be:

requires org.jmolecules.ddd;