We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1a49af4 commit 7f9c13dCopy full SHA for 7f9c13d
1 file changed
core/java8actionloop/bin/compile
@@ -87,7 +87,7 @@ def write_exec(target_dir, classpath, main):
87
jars.append(target_dir)
88
cmd = """#!/bin/bash
89
cd "%s"
90
-/opt/java/openjdk/bin/java -Dfile.encoding=UTF-8 -cp "%s" Launcher "%s" "$@"
+/opt/java/openjdk/bin/java --add-opens java.base/java.util=ALL-UNNAMED --illegal-access=permit -Dfile.encoding=UTF-8 -cp "%s" Launcher "%s" "$@"
91
""" %( target_dir, ":".join(classpath+jars), main)
92
with codecs.open(launcher, 'w', 'utf-8') as d:
93
d.write(cmd)
0 commit comments