Re: Passing system properties by default to java task

2017-08-18 Thread Stefan Bodewig
On 2017-08-17, Al Le wrote: > How can I achieve that some system properties are passed to the JVM > started by the 'java' task with the 'fork=true' option without > specifying them explicitly in the script? Setting clonevm to true will copy over all system properties - but a bunch of other settin

Re: How to add the argument --add-modules to javac and java?

2017-08-18 Thread Stefan Bodewig
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 apach