我想知道如何从m2eclipse对话框将参数传递到maven的命令行。

这是我要使用m2eclipse创建配置的脚本(蝙蝠):

@echo off
set HOST_NAME=localhost.fds.com
set SECURE_ASSETS_PORT=9678

title Running Legacy Application

mvn -Dhostname=%HOST_NAME% -DASSET_SERVER_URL_OVERRIDE=https://%HOST_NAME%:%SECURE_ASSETS_PORT% -Dassets.port.num=9876 -Dassets.secure.port.num=%SECURE_ASSETS_PORT jetty:run -P assets

最佳答案

这就是参数名称和值部分的用途。我认为您虽然不使用-D。

10-06 13:47