为什么不会 maven-ant运行-plugin 运行?

Why won't maven-antrun-plugin run?

我无法将 ant运行 插件安装到 运行。

我的 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 它 运行 但我在日志中看到的关于 ant运行 插件的所有内容是这样的:

[INFO] --- maven-antrun-plugin:1.4:run (default) @ datasite-cms ---
project.artifactId
[INFO] Executing tasks
[INFO] Executed tasks

为什么插件实际上没有做任何事情?

如果您确实需要使用 maven-antrun-plugin,请使用 maven-antrun-plugin 的最新版本。

older versions 使用配置标记:tasks 而不是 target。但是停止使用这种古老版本的 Maven 插件。