我想只在maven-war-plugin中排除某些文件,當屬性「skipCompress」設置爲true時,我想我可以做這樣的事情,但它不適用於我。順便說一句,我不能使用配置文件來實現這一點,即使我想使用skipCompress在開發和部署配置文件中打開和關閉壓縮。maven pom.xml中的條件配置
<plugin>
<artifactId>maven-war-plugin</artifactId>
<configuration>
<if>
<not>
<equals arg1="${skipCompress}" arg2 = "true"/>
</not>
<then>
<warSourceExcludes>**/external/dojo/**/*.js</warSourceExcludes>
</then>
</if>
</configuration>
</plugin>
感謝,
大衛
你自己給出了答案。使用這種配置文件。 – khmarbaise 2012-04-15 08:50:52