我无法让antrun插件运行。
我在我的pom中有这个配置:
<project>
...
<build>
...
<plugins>
...
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-antrun-plugin</artifactId>
<version>1.4</version>
<executions>
<execution>
<phase>compile</phase>
<goals><goal>run</goal></goals>
<configuration>
<target>
<echo message="Hello, maven"/>
</target>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>
当我运行mvn:compile
它运行但我在日志中看到的关于antrun插件的所有内容都是:
[INFO] --- maven-antrun-plugin:1.4:run (default) @ datasite-cms ---
project.artifactId
[INFO] Executing tasks
[INFO] Executed tasks
为什么插件实际上没有做任何事情?
答案 0 :(得分:2)
如果您确实需要使用maven-antrun-plugin,请使用maven-antrun-plugin的最新版本。
older versions使用配置代码:tasks
而不是target
。但是请停止使用这些古老版本的Maven插件。