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

---------------------------------------------------------------------
To unsubscribe, e-mail: user-unsubscr...@ant.apache.org
For additional commands, e-mail: user-h...@ant.apache.org

Reply via email to