Re: Allow ModuleInfoExtender to be used externally

2017-08-22 Thread Alan Bateman
On 10/08/2017 08:29, Oliver Siegmar wrote: On 8/9/17 7:35 PM, mandy chung wrote: ModuleInfoExtender is JDK internal API and not planned to be exported/opened. New version of ASM supports module-info.class. You can probably try out ASM 6 alpha version for now. Thank you for clarifying. So,

Re: Allow ModuleInfoExtender to be used externally

2017-08-10 Thread Oliver Siegmar
> On 8/9/17 7:35 PM, mandy chung wrote: > ModuleInfoExtender is JDK internal API and not planned to be exported/opened. > New version of ASM supports module-info.class. You can probably try out ASM > 6 alpha version for now. Thank you for clarifying. So, an external library (ASM) is required

Re: Allow ModuleInfoExtender to be used externally

2017-08-09 Thread mandy chung
On 8/9/17 7:39 AM, Oliver Siegmar wrote: Hello, I have to create a Java 9 modularized jar file programmatically. I noticed, that the compiled module-info.class file gets modified (main-class, module-version and modules-hash) by the jar command line tool (using

Allow ModuleInfoExtender to be used externally

2017-08-09 Thread Oliver Siegmar
Hello, I have to create a Java 9 modularized jar file programmatically. I noticed, that the compiled module-info.class file gets modified (main-class, module-version and modules-hash) by the jar command line tool (using jdk.internal.module.ModuleInfoExtender). Unfortunately, neither the