我使用Ant进行大型Java项目构建,我正在转换为maven。
如何重新定义webapp-maven标准文件夹以获取网络资源? 我无法移动网页内容,而且它一直在积极开发中。
答案 0 :(得分:1)
答案 1 :(得分:0)
解决方案
<!-- http://maven.apache.org/plugins/maven-war-plugin/examples/adding-filtering-webresources.html -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-war-plugin</artifactId>
<version>2.3</version>
<configuration>
<webResources>
<resource>
<!-- this is relative to the pom.xml directory -->
<directory>${webapp-folder}</directory>
<excludes>
<exclude>**/*.jar</exclude>
</excludes>
</resource>
</webResources>
</configuration>
</plugin>