为什么要赢得maven-antrun-plugin?

时间:2015-05-18 22:02:54

标签: maven ant maven-3 maven-antrun-plugin

我无法让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

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

1 个答案:

答案 0 :(得分:2)

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

older versions使用配置代码:tasks而不是target。但是请停止使用这些古老版本的Maven插件。