Unable to derive module descriptor for auto generated module names in Java 9?

The solution to this seems to be:-

  • A way possible to uninterruptedly using the same artifact name with a new(different) module name could be by packaging META-INF/MANIFEST.MF of the artifact with an attribute Automatic-Module-Name which governs the name of the module to be used by the module descriptor when converted as an automatic module.

OR

  • Artifact owners can add module declarations using module-info.java to their JAR. (this could result in a slow bottom-up migration)

Since the module declaration defined in the specs as:

A module declaration introduces a module name that can be used in
other module declarations to express relationships between modules. A
module name consists of one or more Java identifiers (§3.8) separated
by “.” tokens.


Intersetingly the declarations suggests –

In some cases, the Internet domain name may not be a valid package
name. Here are some suggested conventions for dealing with these
situations:

  • If the domain name contains a hyphen, or any other special character
    not allowed in an identifier (§3.8), convert it into an underscore.

  • If any of the resulting package name components are keywords (§3.9),
    append an underscore to them.

  • If any of the resulting package name components start with a digit, or
    any other character that is not allowed as an initial character of an
    identifier, have an underscore prefixed to the component.

But keep in mind as you do so that Underscore is a keyword in Java9

enter image description here

int _;  // is would throw an error on javac based out of JDK9
int _native; // works fine

Leave a Comment