26

What is the best practice for specifying version of a multimodule maven project?

I would like to have one version string across all modules. Even if I can have only one version definition in the root parent pom, I need to specify the parent pom version in each pom's. Which means, if I need to change version, I need to change all poms. Practically defeats the purpose. Any ideas??

4

3 回答 3

43

你试过versions-maven插件吗?

mvn versions:set -DnewVersion="1.1-SNAPSHOT"您可以在所有基础 maven 项目中设置给定版本。

之后,您必须 mvn versions:commit 删除临时文件并提交到您的 VCS

于 2013-06-26T06:12:52.730 回答
9

更好的方法是在父 pom.xml 中定义您的版本,如下所示。

<groupId>com.my.code</groupId>
<artifactId>my_pro</artifactId>
<version>${YOUR_VERSION}</version>

<properties>
    <JDK_VERSION>1.7</JDK_VERSION>        
    <YOUR_VERSION>1.0-SNAPSHOT</YOUR_VERSION>// here you define your version
    <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
    <org.springframework.version>3.1.2.RELEASE</org.springframework.version>
</properties>

然后您不想在所有子 pom.xml 中一一更改您的版本号。

child pom.xml 可以添加依赖如下

<version>${YOUR_VERSION}</version>
于 2013-06-26T06:17:45.613 回答
9

另一种“最佳”方式是在多模块 pom 旁边创建一个父 pom,它将提供一个依赖管理,其中包含多模块项目引用及其自身的父 pom 版本。如果多模块项目需要另一个多模块项目作为依赖项,这将是最适合您的。父 pom 必须是多模块 pom 的一部分:

<modules>
    <module>my.parent.Pom</module>
    <module>my.first.project</module>
    <module>my.second.project</module>
    <module>my.third.project</module>
</modules>

并且父 pom 应该包含你的多模块项目的依赖管理

<version>VersionNumber</version>
<packaging>pom</packaging>
...
...
<dependencyManagement>
    <dependencies>
        <dependency>
            <groupId>${project.groupId}</groupId>
            <artifactId>my.first.project</artifactId>
            <version>${project.version}</version>
        </dependency>
        <dependency>
            <groupId>${project.groupId}</groupId>
            <artifactId>my.second.project</artifactId>
            <version>${project.version}</version>
        </dependency>
        <dependency>
            <groupId>${project.groupId}</groupId>
            <artifactId>my.third.project</artifactId>
            <version>${project.version}</version>
        </dependency>

您的所有多模块项目都不会定义 groupId 和版本号,因为它们将从父 pom 获取这些信息,此外,如果项目“第三”需要依赖 my.first.project,那么项目“第三”pom 文件中的依赖将会:

<dependencies>
        <dependency>
            <groupId>${project.groupId}</groupId>
            <artifactId>my.first.project</artifactId>
        </dependency>

这就是我们处理多模块项目和版本管理的方式。

于 2014-01-27T10:38:56.363 回答