可能重复:
How do I exclude certain modules from a maven build using the commandline
我在pom文件中运行maven clean install
,其中包含多个模块(和子模块)。我想知道是否可以运行maven构建但是在命令行上指定从构建中跳过一个模块(目前我从构建中手动排除它们,但我更喜欢通过命令行来执行它。)
我知道使用-pl你可以选择性地选择项目,但我想要的是有选择地排除(以黑名单方式)某些项目。
答案 0 :(得分:6)
您可以在配置文件中使用单独的<modules>
部分,并在命令行中激活所需的配置文件。
示例:
<profiles>
<profile>
<id>profile-1</id>
<activation>
<activeByDefault>true</activeByDefault>
</activation>
<modules>...</modules> <!-- module set 1 -->
</profile>
<profile>
<id>profile-2</id>
<modules>...</modules> <!-- module set 2 -->
</profile>
</profiles>
现在,根据您当前的需要,执行
mvn install
mvn install -P profile-2
请注意,您必须仔细考虑,排除模块上必须没有跨配置文件依赖项。