修复在特定环境下JSEngine无法获取到defineClass的bug

This commit is contained in:
misaka
2025-06-10 16:19:22 +08:00
parent 92a013c2c1
commit 27570c23ad
3 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -145,5 +145,5 @@ tasks.withType(Javadoc) {
compileJava {
options.compilerArgs << '-XDignore.symbol.file'
options.fork = true
options.forkOptions.executable = 'C:\\env\\JAVA\\corretto_jdk1.8.0_412\\bin\\javac.exe'
options.forkOptions.executable = System.getenv("JAVA_HOME") + "\\bin\\javac.exe"
}