我有一个Java web项目,在其中我使用了很多scs文件。所有这些文件都在/WebContent/scs中,并编译为WebContent/css。
我正在使用maven war插件创建war,我想从生成的war中排除这个文件夹(以及许多其他文件夹(。我试过使用packagingExcludes,但直到现在都没有成功。可能有一些我不知道的错误配置。
这是我的pom.xml(在与maven-war插件相关的部分(。
<plugin>
<artifactId>maven-war-plugin</artifactId>
<version>2.6</version>
<configuration>
<warSourceDirectory>WebContent</warSourceDirectory>
<failOnMissingWebXml>false</failOnMissingWebXml>
<packagingExcludes>sccs/**</packagingExcludes>
</configuration>
</plugin>
我做错了什么?
使用webResource
包括/不包括