Re: How to add the argument --add-modules to javac and java?
Stefan Bodewig <[email protected]>
| Newsgroups | gmane.comp.jakarta.ant.user |
|---|---|
| Message-ID | <[email protected]> |
On 2017-08-14, Erno Scheiber wrote: > In Java 9 not all packages are included in the graph of the packages. > Now, this is the case of the package java.corba. > The argument > --add-modules java.corba ... > must be added to javac, respectivelly java in a terminal. > How to do that within apache-ant? For <java> a nested <jvmarg> is the way to go, for <javac> it's the corresponding <compilerarg>: <java ...> <jvmarg line="--add-modules java.corba"/> </java> <javac ...> <compilerarg line="--add-modules java.corba"/> </javac> Stefan