gpt4 book ai didi

maven - 如何处理Powershell命令中的点?

转载 作者:行者123 更新时间:2023-12-01 08:27:13 27 4
gpt4 key购买 nike

以下命令在命令行中有效

mvn clean install -Denunciate.skip 

但是由于错误而破坏了powershell

[错误]未知的生命周期阶段“.skip”。您必须以格式指定有效的生命周期阶段或目标

最佳答案

使用引号会有所帮助,尤其是在使用实际的PowerShell代码时。但是,您只是尝试使用常规命令。您可以使用stop-parsing parameter防止PowerShell解析器误解您的代码

The stop-parsing symbol (--%), introduced in Windows PowerShell 3.0, directs Windows PowerShell to refrain from interpreting input as Windows PowerShell commands or expressions.

When calling an executable program in Windows PowerShell, place the stop-parsing symbol before the program arguments. This technique is much easier than using escape characters to prevent misinterpretation.



因此,对于您的命令,您也可以执行此操作。
mvn --% clean install -"Denunciate.skip"

如果确实在其中混合了变量,则只需根据需要移动停止解析器。

关于maven - 如何处理Powershell命令中的点?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31166828/

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