一种更好的方式设置maven pom 缺省激活的 profile
2016-01-27 16:52 yoogo 阅读(1700) 评论(2) 编辑 收藏 举报maven profiles, 缺省激活一个 profile 有两种方式:
方式1:
<activation> <activeByDefault>true</activeByDefault> </activation>
方式2:
<activation> <property>!Foo<property> </activation>
方式1的问题是只要显示指定了其他的profile, 那缺省的这个就被停用了。
借助于方式2 , 我们可以同时设置多个缺省激活的 profile。
通过命令行显式指定其他 profile 时,方式2缺省的 profile 也不会被停用。
在命令行显式的停用方式2的缺省profile, 有两种方式:
1) mvn -P!aProfile — 在 profile id 前加 !
2)mvn -DFoo — 设置Foo 属性