如何直接从命令行执行Maven插件执行?
我有一个配置了执行的插件(antrun),该插件具有一个id,并且未绑定到任何阶段。我可以直接从命令行执行此执行吗?
<plugin> <artifactId>maven-antrun-plugin</artifactId>
<executions>
<execution>
<id>my-execution</id>
...
</execution>
</executions>
</plugin>
用以下命令运行它:
mvn my-execution
或者至少
mvn magicplugin:execute -DexecutionId=my-execution
回答:
133
此功能已实现为MNG-5768,并且在Maven 3.3.1中可用。
更改将:
扩展直接插件调用语法,以允许可选的@ execution-id参数,例如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插件执行? 的全部内容, 来源链接: utcz.com/qa/423179.html