Mahozad
Mahozad

Reputation: 24642

Do IntelliJ modules have anything to do with Java 9 modules?

In IntelliJ there is something called module. Is it in any way related to Java 9 modules (Project Jigsaw)?

Upvotes: 4

Views: 109

Answers (1)

Naman
Naman

Reputation: 32028

No, these are not related unless you start treating a module of IntelliJ to be a JPMS module as well, i.e. including a module-info.java under the source directory of the module.

This is when there should ideally be a one-to-one mapping between them.

Upvotes: 4

Related Questions