gpt4 book ai didi

shell - 如何用多行脚本执行mvn?

转载 作者:行者123 更新时间:2023-12-05 07:21:27 25 4
gpt4 key购买 nike

我在 Maven 项目中使用 JMeter 编写测试用例。我想为每个测试用例提供 shell 和批处理脚本示例,以便其他人可以轻松地尝试这些测试。另一方面,这些脚本是关于如何通过参数配置测试用例的示例。多行格式化操作系统能够轻松理解脚本参数的重要性,尤其是当我的脚本包含 10 个以上参数时。

以批处理格式执行脚本的 mvn 命令如下所示。批处理格式很有魅力。

mvn clean verify -DjMeterScript=JMXFileName.jmx ^
-Djmeter.url=test.environment.url ^
-Djmeter.port=6080 ^
-Djmeter.protocol=http ^
-Djmeter.debugMode=1 ^
-Djmeter.viaFiddler=1 ^

但是,shell 格式不起作用。根据互联网的终极知识,多行 shell 脚本的格式应如下所示。

mvn clean verify -DjMeterScript=JMXFileName.jmx \
-Djmeter.url=test.environment.url \
-Djmeter.port=6080 \
-Djmeter.protocol=http \
-Djmeter.debugMode=1 \
-Djmeter.viaFiddler=1 \

当我使用 ./shellScriptName.sh 执行脚本(其中脚本包含上述示例)时,出现以下错误。

问题是如何正确格式化调用maven的shell脚本?

更新 - 它只发生在 Windows 10 - WSL with Hyper:

  • Windows 10 上的 Git bash 运行良好
  • Macbook Pro 也能正常工作
  • 在任何 linux 上都可以正常工作

错误信息:

[ERROR] Unknown lifecycle phase "
[ERROR] ". You must specify a valid lifecycle phase or a goal in the format <plugin-prefix>:<goal> or <plugin-group-id>:<plugin-artifact-id>[:<plugin-version>]:<goal>. Available lifecycle phases are: validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy, pre-clean, clean, post-clean, pre-site, site, post-site, site-deploy. -> [Help 1]
[ERROR]
[ERROR] To see the full stack trace of the errors, re-run Maven with the -e switch.
[ERROR] Re-run Maven using the -X switch to enable full debug logging.
[ERROR]
[ERROR] For more information about the errors and possible solutions, please read the following articles:
[ERROR] [Help 1] http://cwiki.apache.org/confluence/display/MAVEN/LifecyclePhaseNotFoundException

最佳答案

我有同样的问题,你应该使用 ^ 符号来换行,但也包含所有带引号的参数。我认为您不必在最后一行添加 ^ 符号。

所以在你的情况下它应该是这样的:

mvn clean verify -DjMeterScript="JMXFileName.jmx" ^
-D"jmeter.url"="test.environment.url ^
-D"jmeter.port"=6080 ^
-D"jmeter.protocol"=http ^
-D"jmeter.debugMode"=1 ^
-D"jmeter.viaFiddler"=1

关于shell - 如何用多行脚本执行mvn?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56915962/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com