maven profiles, 預設激活一個 profile 有兩種方式: 方式1: <activation> <activeByDefault>true</activeByDefault> </activation> 方式2: <activation> <property>!Foo<propert
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顯然更靈活。