How can I add jvm properties?
for example I wish to add the following
" -Dcom.sun.management.jmxremote.port=8004 -Dcom.sun.management.jmxremote.authenticate=false -Dcom.sun.management.jmxremote.ssl=false "
How can I add jvm properties?
for example I wish to add the following
" -Dcom.sun.management.jmxremote.port=8004 -Dcom.sun.management.jmxremote.authenticate=false -Dcom.sun.management.jmxremote.ssl=false "
尝试在 MAVEN_OPTS 环境变量上设置 JVM 属性,即在 Linux 上
export MAVEN_OPTS="-Dcom.sun.management.jmxremote.port=8004 -Dcom.sun.management.jmxremote.authenticate=false -Dcom.sun.management.jmxremote.ssl=false"
或者在 Windows 上创建一个名为 MAVEN_OPTS 和 JVM 属性作为值的新环境变量。
如果您从 Windows 上的命令行运行 maven,您还可以使用命令临时设置 MAVEN_OPTS
set MAVEN_OPTS="-Dcom.sun.management.jmxremote.port=8004 -Dcom.sun.management.jmxremote.authenticate=false -Dcom.sun.management.jmxremote.ssl=false"