JEP-282: JLink two modules exporting the same package name

Karl Heinz Marbaise khmarbaise at gmx.de
Wed Oct 12 18:17:30 UTC 2016


Hi,

i have a question concerning the jlink command in JDK 9..(EA +138 build)

I have created two modules lets call them module A and module B 
(module-info.java):

module A {
    requires java.base;
    exports com.single.package;
}

module B {
    requires java.base;
    exports com.single.package;
}

both export the same package: com.single.package

The question is: Shouldn't the jlink command fail in such cases cause 
both modules export the same package ?

Otherwise it would mean to fail at the time of starting the generated 
JVM image which I think is too late...

WDYT ?


Kind regards
Karl Heinz Marbaise


More information about the jigsaw-dev mailing list