在Maven构建期间跳过子模块

时间:2011-11-29 00:00:35

标签: maven continuous-integration jenkins

我们需要能够在某些环境中跳过子模块。

有问题的模块包含集成测试,需要半小时才能运行。因此我们希望在构建CI服务器时包含它,但是当开发人员在本地构建(并且测试运行)时,我们希望跳过该模块。

有没有办法在配置文件设置中执行此操作?我已经做了一些谷歌搜索,并在这里查看其他问题/答案,但没有找到一个好的解决方案。

我想一个选项是完全从父pom.xml中删除该子模块,只需在CI服务器上添加另一个项目即可构建该模块。

建议?

5 个答案:

答案 0 :(得分:167)

Maven版本3.2.1添加了此功能,您可以使用-pl开关(--projects列表shortcut!-({ {3}})排除某些子模块。

mvn -pl '!submodule-to-exclude' install
mvn -pl -submodule-to-exclude install

小心打击角色!是一个特殊字符,所以你要么必须单引号(就像我做的那样)或者用反斜杠字符转义它。

排除多个模块的语法与包含

相同
mvn -pl '!submodule1,!submodule2' install
mvn -pl -submodule1,-submodule2 install

编辑 Windows似乎不喜欢单引号,但在bash中是必要的;在Windows中,使用双引号(感谢@awilkinson)

mvn -pl "!submodule1,!submodule2" install

答案 1 :(得分:133)

当然,这可以使用配置文件来完成。您可以在父pom.xml中执行以下操作。

  ...
   <modules>
      <module>module1</module>
      <module>module2</module>  
      ...
  </modules>
  ...
  <profiles>
     <profile>
       <id>ci</id>
          <modules>
            <module>module1</module>
            <module>module2</module>
            ...
            <module>module-integration-test</module>
          </modules> 
      </profile>
  </profiles>
 ...

在您的CI中,您将使用ci个人资料运行maven,即mvn -P ci clean install

答案 2 :(得分:37)

可以通过指定-pl命令行参数来决定构建哪个reactor项目:

$ mvn --help
[...]
 -pl,--projects <arg>                   Build specified reactor projects
                                        instead of all projects
[...]

它接受以逗号分隔的参数列表,其格式如下:

  • 包含POM的文件夹的相对路径
  • [groupId]:artifactId

因此,给出以下结构:

project-root [com.mycorp:parent]
  |
  + --- server [com.mycorp:server]
  |       |
  |       + --- orm [com.mycorp.server:orm]
  |
  + --- client [com.mycorp:client]

您可以指定以下命令行:

mvn -pl .,server,:client,com.mycorp.server:orm clean install

构建一切。删除列表中的元素以仅构建您喜欢的模块。


编辑:正如blackbuild指出的那样,从Maven 3.2.1开始,你有a new -el flag从反应堆中排除项目,与-pl的做法类似:

答案 3 :(得分:4)

多模块项目的概念是为了满足项目的相关部分的需求。这样的客户端依赖于服务,而服务又取决于说EJB或数据访问例程。您可以以这种方式对持续集成(CI)测试进行分组。我会通过说CI测试需要与应用程序逻辑更改锁定步骤来合理化。

假设您的项目结构为:

project-root
  |
  + --- ci
  |
  + --- client
  |
  + --- server

project-root/pom.xml定义模块

<modules>
  <module>ci</module>
  <module>client</module>
  <module>server</module>
</modules>

ci/pom.xml定义了以下内容:

... 
<profiles>
  <profile>
    <id>default</id>
    <activation>
      <activeByDefault>true</activeByDefault>
    </activation>
    <plugin>
       <artifactId>maven-surefire-plugin</artifactId>
       <configuration>
         <skip>true</skip>
       </configuration>
     </plugin>
  </profile>
  <profile>
    <id>CI</id>
    <plugin>
       <artifactId>maven-surefire-plugin</artifactId>
       <configuration>
         <skip>false</skip>
       </configuration>
     </plugin>
  </profile>
</profiles>

这将导致Maven在此模块中跳过测试,除非名为CI的配置文件处于活动状态。 必须指示您的CI服务器执行mvn clean package -P CI。 Maven网站有一个in-depth explanation of the profiling mechanism

答案 4 :(得分:2)

现在(从1.1.1版本开始)a&#39; skip&#39;在坑中的旗帜。

所以你可以这样做:

    <profile>
        <id>pit</id>
        <build>
            <plugins>
                <plugin>
                    <groupId>org.pitest</groupId>
                    <artifactId>pitest-maven</artifactId>
                    <configuration>
                        <skip>true</skip>
                    </configuration>
                </plugin>
            </plugins>
        </build>
    </profile>
在您的模块中

,坑将跳过

[INFO] --- pitest-maven:1.1.3:mutationCoverage(default-cli)@module-selenium --- [INFO]跳过项目