当前位置: 代码迷 >> Java相关 >> 一种更好的模式设置maven pom 缺省激活的 profile
  详细解决方案

一种更好的模式设置maven pom 缺省激活的 profile

热度:576   发布时间:2016-04-22 19:16:56.0
一种更好的方式设置maven pom 缺省激活的 profile

maven  profiles, 缺省激活一个 profile 有两种方式:

方式1:

<activation>    <activeByDefault>true</activeByDefault></activation>

方式2:

<activation>    <property>!Foo<property></activation>

方式1的问题是只要显示指定了其他的profile, 那缺省的这个就被停用了。

对于方式2, 只要 Foo 属性没有设置,它一直是激活的。

借助于方式2 , 我们可以同时设置多个缺省激活的 profile. 同时我们可以在命令行禁用它们, 通过:

mvn   -P!aProfile     — 在 profile id 前加 ! 

或:

mvn   -DFoo    — 设置Foo 属性 。 

除非缺省激活的 profile 与所有其他的 profile 互斥(这种情况比较少),其他情况使用方式2显然更灵活。 

 

 

  相关解决方案