如何在Maven3中指定活动配置文件

时间:2011-01-22 05:45:16

标签: maven profile maven-3

我们的应用程序包含各种活动配置文件(例如A1,A2,A3,A5 ......),这些配置文件在profiles.xml文件中单独定义。 Maven 3期望将所有配置文件信息存储为pom.xml文件本身的一部分。

如何在pom.xml文件中指定活动配置文件列表,以便我可以避免在命令行中指定它们(例如mvn -PA1,A2,A3,A5)

2 个答案:

答案 0 :(得分:10)

应该这样做:

<profiles>
  <profile>
    <id>profile-1</id>
    <activation>
      <activeByDefault>true</activeByDefault>
    </activation>
    ...
  </profile>
</profiles>

来自here

答案 1 :(得分:4)

Addidional到@ javamonkey79的答案你可以使用settings.xml。有部分配置文件和激活。请看以下示例:

 <profiles>
  <profile>
   <id>hudson-simulate</id>
   <properties>
    <gituser>username</gituser>
    <gitpassword>secret</gitpassword>
   </properties>
  </profile>
  <profile>
   <id>other-profile</id>
   <properties>
    <proerty1>username</property1>
   </properties>
  </profile>
 </profiles>

 <activeProfiles>
  <activeProfile>hudson-simulate</activeProfile>
  <activeProfile>other-profile</activeProfile>
 </activeProfiles>