如何从我的maven构建中排除资源,packagingExcludes不工作

时间:2013-04-22 03:27:58

标签: java spring maven spring-mvc

我正在使用 maven-war-plugin 来构建.war文件

我正在使用packagigExcludes,它适用于.jar文件:

 <packagingExcludes>WEB-INF/lib/jetty-*.ja                        
                        WEB-INF/../resources/log4j.properties,
                        WEB-INF/../resources/web.properties
                    </packagingExcludes>

但是上面的属性文件没有被排除在外,我也尝试过:

src/main/resources/web.properties

这是一个多模块maven项目,我正在为这个spring mvc maven项目构建一个.war文件,我必须排除这些文件,但它不起作用。

任何指针?

2 个答案:

答案 0 :(得分:9)

我刚试过......你确定你在正确的位置进行配置吗?我的pom看起来像这样:

<?xml version="1.0"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
    <modelVersion>4.0.0</modelVersion>
    <parent>
        <groupId>com.example</groupId>
        <artifactId>example-parent</artifactId>
        <version>0.1.4-SNAPSHOT</version>
    </parent>
    <artifactId>example-webapp</artifactId>
    <packaging>war</packaging>
    <url>http://maven.apache.org</url>
    <dependencies>
       [...]
    </dependencies>
    <build>
        <plugins>
            <plugin>
                <artifactId>maven-war-plugin</artifactId>
                <version>2.3</version>
                <configuration>
                    <packagingExcludes>WEB-INF/lib/*.jar</packagingExcludes>
                </configuration>
            </plugin>
        </plugins>
        <finalName>example-webapp</finalName>
    </build>
</project>

----&GT;修改

从资源中排除内容,你必须这样做:

            <plugin>
                <artifactId>maven-war-plugin</artifactId>
                <version>2.3</version>
                <configuration>
                    <packagingExcludes>
                        WEB-INF/classes/log4j.properties
                    </packagingExcludes>
                </configuration>
            </plugin>

答案 1 :(得分:2)

pom.xml

中添加此内容
</build>
  <resources>
        <resource>
            <directory>src/main/resources</directory>
            <excludes>
                <exclude>web.properties</exclude>
            </excludes
        </resource>
  </resources>
</build>