pom.xml应该如何过滤WEB-INF上的资源?

时间:2013-09-15 13:00:56

标签: maven pom.xml

我正在开发一个Maven项目。在对pom.xml文件进行一些更改后,我成功编译它,当我在jboss中部署它时,部署失败。 在我做出更改之前,我能够部署它。

我定义了ENV配置文件。这是我的pom.xml文件的一部分:

<plugins>
    <plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-war-plugin</artifactId>
        <configuration>
            <filters>
                <filter>src/main/filters/filter-${env}.properties</filter>
            </filters>
            <webResources>
                <resource>
                    <directory>WebContent/WEB-INF</directory>
                    <filtering>true</filtering>
                    <targetPath>WEB-INF</targetPath>
                </resource>
                <resource>
                    <directory>WebContent/WEB-INF</directory>
                </resource>
            </webResources>
        </configuration>
</plugin>

我是否对pom.xml文件做错了?

0 个答案:

没有答案