如果由于存在属性而激活maven配置文件,如何定义仅在未激活其他配置文件时激活的另一个配置文件?
e.g。
<profile>
<activation>
<property>
<name>myproperty</name>
<value>value</value>
</property>
</activation>
...
</profile>
<profile>
<activation>
<property>
<name>myproperty</name>
<value></value> <!-- Anything other than "value" -->
</property>
</activation>
...
</profile>
答案 0 :(得分:6)
似乎答案是
<value>!value</value>