1

我有一个用 Ant 构建的大型 Java 项目,我正在转换为 maven。

如何重新定义 webapp - web 资源的 maven 标准文件夹?我无法移动 Web 内容,并且它始终处于积极开发中。

4

2 回答 2

1

看这里:

http://maven.apache.org/plugins/maven-war-plugin/war-mojo.html

您要更改的属性是“warSourceDirectory”

于 2012-12-31T08:16:42.250 回答
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>
于 2013-01-05T11:05:23.377 回答