重新定义webapp位置 - 用于Web资源的maven标准文件夹

时间:2012-12-31 08:08:39

标签: java maven web-applications

我使用Ant进行大型Java项目构建,我正在转换为maven。

如何重新定义webapp-maven标准文件夹以获取网络资源? 我无法移动网页内容,而且它一直在积极开发中。

2 个答案:

答案 0 :(得分:1)

见这里:

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

您要更改的属性是“warSourceDirectory”

答案 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>