This question already has answers here:
How to pass JVM options from bootRun

(7个答案)


3年前关闭。




我想将一些JVM args传递给我的Gradle bootRun任务,即-Xbootclasspath。我已经添加了:
bootRun {
    systemProperties = System.properties
}

到我的build.gradle文件,但运行时不喜欢它:
gw bootRun -Xbootclasspath/p:....

我得到错误:
Unknown command-line option '-X'.

我可能运行不正确,还是System.properties不是我所寻找的正确方法?

最佳答案

通过使用jvmArgs使其工作,如本SO问题[How to pass JVM options from bootRun]中所述

bootRun {
    jvmArgs = ["-Xbootclasspath/p:<fully-qualified-path-to-jar>"]
}

07-24 09:16