在我的项目中,我有一个自定义配置文件custom-profile-name
。
我的POM的简化结构如下:
<artifactId>parent</artifactId>
<modules>
<module>child</module>
</modules>
当我跑步时
mvn help:active-profiles -P custom-profile-name
我明白了:
Active Profiles for Project 'org.sample:parent:pom':
The following profiles are active:
custom-profile-name
Active Profiles for Project 'org.sample:child':
The following profiles are active:
custom-profile-name
我一直在阅读有关配置文件继承的内容,如果我理解正确,则不应继承配置文件。任何人都可以解释为什么custom-profile-name
在子模块中处于活动状态。
我的最终目标是使用一个自定义插件配置执行父级,并使用同一插件的另一个配置执行所有子级模块。
答案 0 :(得分:1)
不确定为什么要为custom-profile-name激活父模块和子模块。但要获得所需的内容,可以通过在配置文件中定义属性来完成。 示例:
<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/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>com.mycompany.app</groupId>
<artifactId>parent</artifactId>
<packaging>pom</packaging>
<version>1.0-SNAPSHOT</version>
<name>parent-app</name>
<url>http://maven.apache.org</url>
<modules>
<module>child</module>
</modules>
<profiles>
<profile>
<id>default</id>
<activation>
<activeByDefault>true</activeByDefault>
</activation>
<modules>
<module>child</module>
</modules>
<properties>
<parentProp>foo</parentProp>
<childProp>foo</childProp>
</properties>
</profile>
<profile>
<id>custom-profile-name</id>
<modules>
<module>child</module>
</modules>
<properties>
<parentProp>xyz</parentProp>
<childProp>abc</childProp>
</properties>
</profile>
</profiles>
&#39; parentProp&#39;是父pom和&#39; childProp使用的配置。是孩子pom使用的配置。从配置中可以看出,默认配置文件和&#39; custom-profile-name&#39;由于属性的值不同,配置文件的行为也不同。