gpt4 book ai didi

maven-2 - maven, Ant 插件,antrun :run

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

执行“mvn antrun:run”时,我的任务没有运行。

我如何从命令行专门执行任务?

最佳答案

假设这样的东西被添加到你的 pom.xml

<build>
<plugins>
<plugin>
<artifactId>maven-antrun-plugin</artifactId>
<executions>
<execution>
<phase>package</phase><!--Change this to control when it runs -->
<configuration>
<tasks>
<echo message="Hello, maven"/>
</tasks>
</configuration>
<goals>
<goal>run</goal><!-- this is to call antrun:run -->
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>

正在执行 mvn package将在您的控制台上产生以下结果
[INFO] [antrun:run {execution: default}]
[INFO] Executing tasks
[echo] Hello, maven
[INFO] Executed tasks

您可以更改 phase让您的 ant 脚本在您需要的任何时间运行。

关于maven-2 - maven, Ant 插件,antrun :run,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/910177/

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