Maven更改了不同配置文件的插件顺序

时间:2014-03-03 15:08:13

标签: java maven maven-3 maven-plugin

我有pom.xml我在两个不同的{{plugin(同一groupIdartifactId,不同execution :-))中定义了相同的profiles 1}}。 executions在同一phase中定义,因此订单是按xml中的顺序计算的:

<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
    <modelVersion>4.0.0</modelVersion>
    <groupId>echo</groupId>
    <artifactId>test</artifactId>
    <name>echo-test</name>
    <version>1.0.0</version>
    <packaging>pom</packaging>
    <profiles>
        <profile>
            <id>1st-profile</id>
            <activation>
                <activeByDefault>true</activeByDefault>
            </activation>
            <build>
                <plugins>
                    <plugin>
                        <artifactId>maven-antrun-plugin</artifactId>
                        <executions>
                            <execution>
                                <id>1st-antrun-echo</id>
                                <phase>test</phase>
                                <goals>
                                    <goal>run</goal>
                                </goals>
                                <configuration>
                                    <tasks>
                                        <echo>1st antrun plugin</echo>
                                    </tasks>
                                </configuration>
                            </execution>
                        </executions>
                    </plugin>
                </plugins>
            </build>
        </profile>
        <profile>
            <id>2nd-profile</id>
            <activation>
                <activeByDefault>true</activeByDefault>
            </activation>
            <build>
                <plugins>
                    <plugin>
                        <groupId>com.soebes.maven.plugins</groupId>
                        <artifactId>maven-echo-plugin</artifactId>
                        <version>0.1</version>
                        <executions>
                            <execution>
                                <id>1st-soebes-echo</id>
                                <phase>test</phase>
                                <goals>
                                    <goal>echo</goal>
                                </goals>
                                <configuration>
                                    <echos>
                                        <echo>1st echo-plugin</echo>
                                    </echos>
                                </configuration>
                            </execution>
                        </executions>
                    </plugin>
                    <plugin>
                        <artifactId>maven-antrun-plugin</artifactId>
                        <executions>
                            <execution>
                                <id>2nd-antrun-echo</id>
                                <phase>test</phase>
                                <goals>
                                    <goal>run</goal>
                                </goals>
                                <configuration>
                                    <tasks>
                                        <echo>2nd antrun plugin</echo>
                                    </tasks>
                                </configuration>
                            </execution>
                        </executions>
                    </plugin>
                </plugins>
            </build>
        </profile>
    </profiles>
</project>

所有插件执行都在test阶段定义,因此我希望以下顺序:

1st antrun plugin
1st echo-plugin
2nd antrun plugin

但是,由于合并了antrun-plugins,我得到了这个输出:

1st echo-plugin    
1st antrun plugin    
2nd antrun plugin

此命令解释了为什么会发生这种情况:mvn help:effective-pom

除了引入新阶段之外,还有其他解决方案可以保留订单吗?我们的项目非常大,这是一个非常简单的例子。

为什么maven的限制是将插件合并为多个执行的插件?

1 个答案:

答案 0 :(得分:22)

根据我的经验,这是Maven中最大的错误之一。如果您在不同的配置文件中为同一插件配置了多个配置,则该订单根本无法预测。我甚至观察到,在给定阶段我在项目B中有一些插件顺序,并且只要一些相同的插件在父项目中获得配置(甚至在同一阶段),订单就会被破坏。

https://issues.apache.org/jira/browse/MNG-2258处有一个与此相关的明显错误的错误。

可能的解决方法

  • 尽可能尝试将部分插件转移到上一阶段 (准备测试用于某些插件并测试其余插件)
  • 尝试 使用a替换多个插件的功能 groovy-maven-plugin脚本(非常方便与ant集成,以及 您到达脚本中的活动配置文件列表)
  • 写下你的 拥有mojo并以正确的顺序调用插件(参见 https://github.com/TimMoore/mojo-executor
  • 试一试。也许它符合您的需求,并且它带来了许多来自Maven的好东西

我认为你现在还有其他事情可做。