gpt4 book ai didi

maven - 如何直接从命令行执行maven插件执行?

转载 作者:行者123 更新时间:2023-12-03 05:04:03 33 4
gpt4 key购买 nike

我有一个插件(antrun),配置了一个执行,它有一个 id 并且不绑定(bind)到任何阶段。我可以直接从命令行执行此执行吗?

<plugin>
<artifactId>maven-antrun-plugin</artifactId>
<executions>
<execution>
<id>my-execution</id>
...
</execution>
</executions>
</plugin>

使用如下命令运行它:

mvn my-execution

或者至少

mvn magicplugin:execute -DexecutionId=my-execution

最佳答案

此功能已 implementedMNG-5768 ,并且在 Maven 3.3.1 中可用。

更改将:

extend direct plugin invocation syntax to allow optional @execution-id parameter, e.g., org.apache.maven.plugins:maven-remote-resources-plugin:1.0:process@executionId.

所以,就你的情况而言:

mvn antrun:run

使用default-cli执行ID,并且:

mvn antrun:run@my-execution

使用 pom 中配置的执行。

关于maven - 如何直接从命令行执行maven插件执行?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3166538/

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