<div dir="ltr">Hi,<div><br></div><div>I've searched all forums, stackoverflow, release notes, documentation and attempted to read openjdk source code. I am not sure if below environment variables options are supposed to work, if they do anything, and how they should be done. The behaviour change is in JDK 18, but in practice I only care about how it should be done in JDK 11, 17, 21.</div><div><br></div><div>With java 17</div><div><br></div><div>$ docker run -ti \</div><div>--env 'JDK_JAVAC_OPTIONS="-J--add-exports=java.base/sun.security.internal.spec=ALL-UNNAMED"' \</div><div>--entrypoint javac openjdk:17 --version</div><div>javac 17.0.2<br clear="all"><div><br></div><div>$ docker run -ti \</div><div>--env 'JDK_JAVAC_OPTIONS="-J-Djavax.net.ssl.trustStoreType=PKCS12"' \</div><div>--entrypoint javac openjdk:17 --version<br>javac 17.0.2<br></div><div><br></div><div>And yet with java 18 (19, 20, 21, 22)</div><div><br></div><div><div><div>$ docker run -ti \</div><div>--env 'JDK_JAVAC_OPTIONS="-J--add-exports=java.base/sun.security.internal.spec=ALL-UNNAMED"' \</div><div>--entrypoint javac openjdk:18 --version</div></div><div>jerror: invalid flag: -J--add-exports=java.base/sun.security.internal.spec=ALL-UNNAMED<br>Usage: javac <options> <source files><br>use --help for a list of possible options<br clear="all"><div><br></div><div>$ docker run -ti \</div><div>--env 'JDK_JAVAC_OPTIONS="-J-Djavax.net.ssl.trustStoreType=PKCS12"' \</div><div>--entrypoint javac openjdk:18 --version<br>error: invalid flag: -J-Djavax.net.ssl.trustStoreType=PKCS12<br>Usage: javac <options> <source files><br>use --help for a list of possible options<br></div><div><br></div></div></div><div>Can anybody point me at relevant documentation or source code changes?</div><div>Or otherwise explain how to pass these options correctly?</div><div>Should they even be set in JDK_JAVAC_OPTIONS?</div><div>Should  one specify '--add-exports' without '-J' prefix?</div><div>How does one specify trustStoreType - or does '-J-D' flag doesn't actually do anything in JDK_JAVAC_OPTIONS?</div><div><br></div><div>Ideally looking for environment variables to set in my Dockerfile, rather than command line arguments.</div><div><br></div><span class="gmail_signature_prefix">-- </span><br><div dir="ltr" class="gmail_signature" data-smartmail="gmail_signature">Regards,<br><br>Dimitri.</div></div></div>