On 19/11/2016 18:02, [email protected] wrote:
Ok, find the bug, obvious in retrospect,
there is no way to declare a concealed package using the
ModuleDescriptor.Builder so my configuration miss concealed packages thus the
configuration that i try to verify is ill formed.
The builder should be able to declare concealed packages or all packages.
Is there any reason why you can't use the `contains` method, as in :
ModuleDescriptor.module("m1").requires("m2").exports("p").contains("p.internal").build();
-Alan.