8

在以下多项目情况下,版本控制和发布管理的最佳实践是什么?

项目结构

  • 全球父母
    • 父项目(版本:1.0-SNAPSHOT)
      • 子项目 1(与父项目相同)
      • 子项目 2(与父项目相同)
      • 子项目 3(与父项目相同)
      • 子项目 4(与父项目相同)
      • …</li>

我只想为父项目和所有子项目设置一次版本,因为项目的每个部分都必须具有相同的版本。

我还想要的是,用 continuum/maven 发布项目。

当前的“坏”解决方案:

通常一个简单的方法应该是在父 pom 中设置版本并在每个孩子中说“来自父母的最后一个版本”,但这不适用于 maven <3.1(参见此处)[http://jira.codehaus.org/browse/ MNG-624] 现在我在每个子项目中设置父项目的版本,并且对于每个版本,我必须更改所有子项目和父项目的版本。

例子:

家长

<groupId>com.test</groupId>
<artifactId>com.test.buildDefinition</artifactId>
<version>1.0-SNAPSHOT</version>

孩子

<parent>
    <groupId>com.test</groupId>
    <artifactId>com.test.buildDefinition</artifactId>
    <version>1.0-SNAPSHOT</version>
</parent>

<groupId>com.test</groupId>
<artifactId>com.test.project</artifactId>
<version>${parent.version}</version>

如果我现在想使用 Continuum 发布我的项目,我使用以下顺序来发布它:

  1. 父项目
  2. 儿童项目 1
  3. 儿童项目 2
  4. …</li>

但这不起作用,因为在更改父级版本后,子级在父级中不再有 SNAPSHOT 版本,我认为必须有更好的方法来发布具有连续性的多项目。

4

3 回答 3

2

如果您在<dependencyManagement/>标签中添加子模块,我很确定您不会遇到这个问题。

家长

<groupId>com.test</groupId>
<artifactId>com.test.buildDefinition</artifactId>
<version>1.0-SNAPSHOT</version>
<packaging>pom</packaging>

<modules>
    <module>child1</module>
    <module>child2</module>
</modules>

<dependencyManagement>
    <dependencies>
        <dependency>
            <groupId>com.test</groupId>
            <artifactId>com.test.child1</artifactId>
            <version>${project.version}</version>
        </dependency>
        <dependency>
            <groupId>com.test</groupId>
            <artifactId>com.test.child2</artifactId>
            <version>${project.version}</version>
        </dependency>
    </dependencies>
</dependencyManagement>

孩子1

<parent>
    <groupId>com.test</groupId>
    <artifactId>com.test.buildDefinition</artifactId>
    <version>1.0-SNAPSHOT</version>
</parent>

<!-- groupId and version can be skipped since it will be inherited from parent -->
<artifactId>com.test.child1</artifactId>

Child2(取决于 Child1)

<parent>
    <groupId>com.test</groupId>
    <artifactId>com.test.buildDefinition</artifactId>
    <version>1.0-SNAPSHOT</version>
</parent>

<!-- groupId and version can be skipped since it will be inherited from parent -->
<artifactId>com.test.child2</artifactId>

<dependencies>
    <dependency>
        <groupId>com.test</groupId>
        <artifactId>com.test.child1</artifactId>
    </dependency>
</dependencies>

如果您在使用 dependencyManagement 时尝试这样做,则模块之间的依赖项将永远不必定义任何版本,因为它们是在父 pom.xml 中定义的。

通过这种方法发布多模块项目我从来没有遇到过任何问题。

编辑

需要明确的是:dependencyManagement与父子之间的继承无关。它解决了子模块之间依赖版本的任何问题。它在发布期间有效。

于 2012-08-20T14:04:06.093 回答
1

您应该在单个版本控制层次结构下为同时具有相同版本的模块创建多模块结构。Continuum 将允许您将它们作为单个作业或每个模块的多个作业添加到组中,并且无论哪种方式,发布机制都会从父级触发并自动为您解析版本。

顺便说一句,您可以删除<version>${parent.version}</version>和相同的 groupId,因为它们将从父级继承。

如果全局父级是单独发布的,您应该将其拆分为一个单独的模块,而不是使其成为同一个多模块结构的一部分。您可以在此布局中找到示例项目:https ://github.com/brettporter/centrepoint

于 2012-08-21T03:43:01.043 回答
0

如果您希望所有版本号保持同步,您可以使用 Maven 发布插件的autoVersionSubmodules标志。将此值设置为 true 将允许您在顶级项目级别执行发布,并使所有子模块以与父级相同的版本发布。

这可以在运行时在命令行上mvn -DautoVersionSubmodules release:prepare或在 POM 文件中指定,如下所示:

<plugin>
  <artifactId>maven-release-plugin</artifactId>        
  <version>2.3.2</version>
  <configuration>
    <autoVersionSubmodules>true</autoVersionSubmodules>
  </configuration>
</plugin>

我没有使用过 Continuum,但我相信它在幕后使用了 Maven 发布插件?一些谷歌搜索表明这可能有效(基于一些关于 Continuum 界面如何处理这种情况的“不错的”错误)。

于 2012-08-20T14:55:19.353 回答