gpt4 book ai didi

Maven:ant-run 插件 echo 似乎没有执行

转载 作者:行者123 更新时间:2023-12-01 19:36:32 25 4
gpt4 key购买 nike

我有一个使用 ant-run 插件的 Maven 项目。我添加了一个 echo 消息,但它似乎没有执行:

<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-antrun-plugin</artifactId>
<executions>
<execution>
<id>ast-application-deployment-kit</id>
<phase>package</phase>
<goals>
<goal>run</goal>
</goals>
<configuration>
<target>
<echo message="Starting ant-run target configuration."/>

但是当我 mvn clean package 时,我看到了这个
[INFO] --- maven-antrun-plugin:1.3:run (my-app) @ my-app ---
[INFO] Executing tasks
[INFO] Executed tasks

但我没有看到回声。我究竟做错了什么?

最佳答案

考虑将您的插件版本升级到最新的 (1.8):

这个 POM 片段打印回声:

<plugin>
<artifactId>maven-antrun-plugin</artifactId>
<version>1.8</version>
<executions>
<execution>
<phase>package</phase>
<configuration>
<target>
<echo>NOW YOU CAN SEE ME!</echo>
</target>
</configuration>
<goals>
<goal>run</goal>
</goals>
</execution>
</executions>
</plugin>

关于Maven:ant-run 插件 echo 似乎没有执行,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29176240/

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