gpt4 book ai didi

maven-2 - maven maven-exec-plugin 多种执行配置

转载 作者:行者123 更新时间:2023-12-03 09:20:12 32 4
gpt4 key购买 nike

是否可以通过命令行中的 id 调用 maven-exec-plugin(或任何其他插件)执行?

假设我的 pom.xml 文件如下所示:

<project>
[...]
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>exec-maven-plugin</artifactId>
<executions>
<execution>
<id>foo</id>
<goals>
<goal>exec</goal>
</goals>
<phase></phase>
<configuration>
<executable>echo</executable>
<arguments>
<argument>foo</argument>
</arguments>
</configuration>
</execution>
<execution>
<id>bar</id>
<goals>
<goal>exec</goal>
</goals>
<phase></phase>
<configuration>
<executable>echo</executable>
<arguments>
<argument>bar</argument>
</arguments>
</configuration>
</execution>
</executions>
</plugin>
[...]
</project>

现在可以打电话了吗

mvn exec:exec



有一些额外的魔法来运行执行“foo”?

对于好奇的人,这里有一个使用配置文件的替代解决方案:
http://www.mail-archive.com/user@mojo.codehaus.org/msg00151.html

最佳答案

现在可以,从 Maven 3.3.1 开始:查看改进 MNG-5768Maven 3.3.1 release notes

您可以使用以下语法调用特定的执行配置:

mvn exec:exec@foo

关于maven-2 - maven maven-exec-plugin 多种执行配置,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2192660/

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