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

2022-09-03 05:21:47

我有一个我定义相同(相同和,不同:-)的地方,在两个不同的。它们的定义相同,因此顺序由 xml 中的订单计算:pom.xmlplugingroupIdartifactIdexecutionprofilesexecutionsphase

<?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

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

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

可能的解决方法

  • 如果可能的话,尝试将一些插件转移到上一阶段(用于某些插件的准备测试,并测试其余插件)
  • 尝试用一个时髦的插件脚本替换多个插件的功能(使用ant集成非常方便,您可以到达脚本中的活动配置文件列表)
  • 编写自己的 mojo 并以正确的顺序调用插件(请参阅 https://github.com/TimMoore/mojo-executor)
  • 试一试。也许它符合您的需求,并且它带来了Maven的许多好东西

我不认为你现在还能做些什么。


答案 2

推荐