我有一个用 Ant 构建的大型 Java 项目,我正在转换为 maven。
如何重新定义 webapp - web 资源的 maven 标准文件夹?我无法移动 Web 内容,并且它始终处于积极开发中。
我有一个用 Ant 构建的大型 Java 项目,我正在转换为 maven。
如何重新定义 webapp - web 资源的 maven 标准文件夹?我无法移动 Web 内容,并且它始终处于积极开发中。
解决者
<!-- 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>