我在src / main / webap / images有一个图像文件夹,我想在战争中排除它。这是我的war插件配置:
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-war-plugin</artifactId>
<configuration>
<version>2.0</version>
<warName>UNAB</warName>
<webXml>src/main/webapp/WEB-INF/web.xml</webXml>
<webResources>
<resource>
<directory>src/main/webapp/</directory>
<excludes>
<exclude>images/*</exclude>
</excludes>
</resource>
</webResources>
</configuration>
</plugin>
这不起作用。图像文件夹在战争中结束。有关我的任何疑难解答提示吗?
答案 0 :(得分:1)
尝试使用<warSourceExcludes>
代替<webResources>;
我在几天前遇到了同样的问题,这对我有用。