6

当属性“skipCompress”设置为 true 时,我只想使用 maven-war-plugin 排除某些文件。我认为以下规范可能有效,但事实并非如此。顺便说一句,我不能使用配置文件来实现这一点。我想使用 skipCompress 在开发和部署配置文件中打开和关闭压缩。

<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>

谢谢,

大卫

4

1 回答 1

4

在没有真正了解 maven 配置文件的情况下,我使用如下模式解决了类似的问题。也许它对您的情况也有帮助。

<profiles>
  <profile>
    <id>skipCompress</id>
    <activation>
      <property>
        <name>skipCompress</name>
        <value>true</value>
      </property>
    </activation>
    <build>
      <plugins>
        <plugin>
          <artifactId>maven-war-plugin</artifactId>
          <configuration>
            <warSourceExcludes>**/external/dojo/**/*.js</warSourceExcludes>
          </configuration>
        </plugin>
      </plugins>
    </build>
  </profile>
</profiles>
于 2012-06-16T09:08:56.827 回答