1

我按照此处的说明进行操作,但仅当它映射到默认目录以外的目录时才有效。

这是我尝试过的示例:

<configuration>
     <webResources>
          <resource>
              <directory>${basedir}/src/main/webapp/WEB-INF</directory>
              <!-- the below works when uncommented and does exclude *.tmp -->
              <!-- <targetPath>test/WEB-INF</targetPath> -->
              <!-- the below does not -->
              <targetPath>WEB-INF</targetPath>
              <excludes>
                <exclude>*.tmp</exclude>
              </excludes>
          </resource>
      </webResources>
</configuration>

所以我的假设是我有其他东西覆盖了配置。但是,这是我第一个使用 maven 的项目,所以我不确定接下来要测试或调查什么。

4

1 回答 1

1

将您的排除更改为

**/*.tmp

您还可以从目录中删除 WEB-INF 并完全删除 targetDirectory。例如,这里将包含所有 xml、xhtml、x*ml 等,并排除任何目录中的所有 *.tmp

<webResources>
    <resource>
        <directory>${basedir}/src/main/webapp</directory>
        <includes>
            <include>**/*.x*ml</include>
        </includes>
        <excludes>
            <exclude>**/*.tmp</exclude>
        </excludes>
    </resource>
</webResources>
于 2009-10-30T19:19:00.597 回答