我按照此处的说明进行操作,但仅当它映射到默认目录以外的目录时才有效。
这是我尝试过的示例:
<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 的项目,所以我不确定接下来要测试或调查什么。