我需要检测用户是否在我的父 pom 中使用 mvn2 或 mvn3 以加载正确的插件版本。我遵循了这里的建议:http ://maven.apache.org/plugins/maven-site-plugin/maven-3.html#Using_maven-site-plugin_2.x_with_Maven_2_and_maven-site-plugin_3.x_with_Maven_3
检测机制工作得很好——但是,我的其他激活ByDefaul 的配置文件不再被拾取。
超级 pom 如下所示:
<profile>
<id>profile-1</id>
<activation>
<activeByDefault>true</activeByDefault>
</activation>
</profile>
<profile>
<id>profile-2</id>
<activation>
<activeByDefault>false</activeByDefault>
</activation>
</profile>
<profile>
<id>maven-3</id>
<activation>
<file>
<!-- This employs that the basedir expression is only recognized by Maven 3.x (see MNG-2363) -->
<exists>${basedir}</exists>
</file>
</activation>
<build>
<pluginManagement>
<plugins>
<plugin>
<groupId>com.company.plugins</groupId>
<artifactId>my-super-plugin</artifactId>
<version>1.0-123</version>
</plugin>
</plugins>
</pluginManagement>
</build>
</profile>
</profiles>
当我使用 mvn3 运行 mvn help:active-profiles --> 仅列出 maven-3 配置文件。如果我使用 mvn2,则会正确列出 profile-1。
*编辑 *:事实证明,它实际上在这里有很好的记录:http ://maven.apache.org/guides/introduction/introduction-to-profiles.html
除非使用上述方法之一激活同一 POM 中的另一个配置文件,否则此配置文件将自动对所有构建处于活动状态。当在命令行或通过其激活配置激活 POM 中的配置文件时,默认情况下处于活动状态的所有配置文件都会自动停用。
我现在的问题是:如果使用-P profile2,您建议默认激活profile1,激活profile 2,而如果使用maven3,则激活maven-3 profile?