1

插件版本: 2.0

我正在尝试使用 maven-release-plugin 来设置父 POM 和所有模块的版本。

使用以下父 POM:

<?xml version="1.0" encoding="UTF-8"?>
<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/xsd/maven-4.0.0.xsd">
    <modelVersion>4.0.0</modelVersion>

    <groupId>uk.co.mycompany</groupId>
    <artifactId>myProject</artifactId>
    <version>latest-SNAPSHOT</version>
    <packaging>pom</packaging>
    <name>My Project</name>

    <modules>
        <module>../../subPom1</module>
        <module>../../subPom2</module>
            <module>../../subPom3</module>
    </modules>

    <build>
        <plugins>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-release-plugin</artifactId>
                <version>2.0</version>
                <executions>
                    <execution>
                        <phase>clean</phase>
                        <id>set-release-versions</id>
                        <configuration>
                            <developmentVersion>1.1.8</developmentVersion>
                            <autoVersionSubmodules>true</autoVersionSubmodules>
                        </configuration>
                    </execution>
                </executions>
            </plugin>

        </plugins>
    </build>
</project>

运行时mvn clean install -DskipTests -Pdeploy,在 clean 阶段运行插件的配置被完全忽略,并且使用值“latest-SNAPSHOT”进行构建。

我期待它从插件配置中获取值“1.1.8”。

每个子 POM 等价于:

<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/xsd/maven-4.0.0.xsd">
    <modelVersion>4.0.0</modelVersion>
    <parent>
        <groupId>uk.co.mycompany</groupId>
        <artifactId>myProject</artifactId>
        <version>latest-SNAPSHOT</version>
        <relativePath>../../System/build/parentPom.xml</relativePath>
    </parent>

    ...

</project>

为什么忽略配置?

编辑#1:文件系统结构按要求:

/
 |- system
 |  |
 |  |- build
 |      |
 |      |-parentPOM file
 |
 |- business
 |     |
 |     | - childPOM1
 |     | - childPOM2
 |- client
 |     | - childPOM3
 |     | - childPOM4

忽略 SSCCE 中的 .../... - 我已经混淆了真实值以笼统地描述问题。

编辑#2:我已将定义移至<pluginManagement>建议的位置,但问题仍然存在(不使用插件,没有对控制台的反馈):

<pluginManagement>
            <plugins>
                <plugin>
                    <groupId>org.apache.maven.plugins</groupId>
                    <artifactId>maven-release-plugin</artifactId>
                    <version>2.0</version>
                    <configuration>
                        <developmentVersion>1.1.8</developmentVersion>
                        <autoVersionSubmodules>true</autoVersionSubmodules>
                    </configuration>
                </plugin>
            </plugins>
        </pluginManagement>
4

2 回答 2

2

您忘记设置插件的目标。您配置了 update-versions 目标所需的参数,但您告诉 maven 只在 clean 阶段执行插件,而不是插件的哪个目标。所以它什么都不做。

尝试 mvn clean 时检查 maven 日志,它应该只显示:

[INFO] --- maven-clean-plugin:2.4.1:clean (default-clean) @ test ---

当您将配置更改为:

    <build>
    <plugins>
        <plugin>
            <groupId>org.apache.maven.plugins</groupId>
            <artifactId>maven-release-plugin</artifactId>
            <version>2.0</version>
            <executions>
                <execution>
                    <phase>clean</phase>
                    <id>set-release-versions</id>
                    <goals><goal>update-versions</goal></goals>
                    <configuration>
                        <developmentVersion>1.1.8</developmentVersion>
                        <autoVersionSubmodules>true</autoVersionSubmodules>
                    </configuration>
                </execution>
            </executions>
        </plugin>
    </plugins>
</build>

在 maven 的 clean 阶段调用目标 update-versions。

[INFO] --- maven-release-plugin:2.0:update-versions (set-release-versions) @ bdd ---

不确定这是否会解决您的所有问题,但这将迫使 maven 像预期的那样在 clean 阶段执行插件。

然而,当仅用于更改版本时,发布插件需要许多特殊设置(如 scm 连接)。所以我建议使用versions-maven-plugin

 <build>
    <plugins>
        <plugin>
        <groupId>org.codehaus.mojo</groupId>
        <artifactId>versions-maven-plugin</artifactId>
        <version>2.0</version>
            <executions>
                <execution>
                    <goals>
                        <goal>set</goal>
                    </goals>
                    <phase>clean</phase>
                    <configuration>
                        <newVersion>1.1.8</newVersion>
                    </configuration>
                </execution>
            </executions>
        </plugin>
    </plugins>
</build>
于 2013-05-28T18:29:01.707 回答
1

最后,我放弃了。

Stack Overflow 等都充满了像这个一样的未回答的问题,并且插件文档未能提供 POM 格式的使用示例,告诉我我需要了解的关于这个插件的所有信息。

我的解决方法是将父 POM 的版本设置为“latest-SNAPSHOT”并引入一个名为的属性<myproject.release.version>,,我在任何我想打印版本号的地方都使用它。

特别是,我想在 WAR 文件的清单中打印版本号。我这样做如下:

<plugin>
    <artifactId>maven-war-plugin</artifactId>
            <configuration>
                    <archive>
                          <manifest>
                               <addDefaultImplementationEntries>true</addDefaultImplementationEntries>
                            </manifest>
                           <manifestEntries>
                                    <Implementation-Version>${myproject.release.version}</Implementation-Version>
                                </manifestEntries>
                    </archive>
                </configuration>
                <executions>
                    <execution>
                        <id>war</id>
                        <phase>package</phase>
                        <goals>
                            <goal>war</goal>
                        </goals>
                        <configuration>
                            <filteringDeploymentDescriptors>true</filteringDeploymentDescriptors>
                            <filters>
                                <filter>${project.parent.basedir}/filter/${webapp.filter}.properties</filter>
                            </filters>
                        </configuration>
                    </execution>
                </executions>
 </plugin>

使用上述配置,我将发布号作为 Maven 属性放入我的清单中。

在我的应用程序中,我从那里拿起它并在屏幕上绘制它。

于 2013-05-28T14:20:26.983 回答