> On Nov 11, 2015, at 5:03 PM, Alan Bateman <alan.bate...@oracle.com> wrote:
> 
> On 11/11/2015 09:54, Wang Weijun wrote:
>> :
>> 
>> Here comes the question: How do I request a new module to be included in it? 
>> The CCC for the new module/API?
>> 
> Can you cc jigsaw-dev on the changes to modules.xml? modules.xml is the 
> temporary document that we have in JDK 9 to define the modular structure 
> until the module system goes into the main line.

I'm prototyping in jake and the change is

src/java.base/share/classes/module-info.java:

     exports sun.security.util to
+        jdk.security.cert,
     exports sun.security.x509 to
+        jdk.security.cert,

src/jdk.security.cert/share/classes/module-info.java:

+module jdk.security.cert {
+    exports jdk.security.cert;
+}

--Max

> 
> -Alan

Reply via email to