1
<plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-war-plugin</artifactId>
                <version>2.4</version>
                <configuration>
                    <webResources>
                        <resource>
                            <!-- this is relative to the pom.xml directory -->
                            <directory>src/main/webapp</directory>
                            <!-- there's no default value for this -->
                            <excludes>
                                <exclude>META-INF/context.xml</exclude>
                            </excludes>
                        </resource>
                    </webResources>
                </configuration>
            </plugin>

ファイル src/main/webapp/META-INF/context.xml があります

warファイルから除外したい。公式ドキュメントを参考に、pomにプラグインを追加しました。しかし、demo.war/META-INF/context.xml の下に表示されます。

4

1 に答える 1

3
<plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-war-plugin</artifactId>
                <version>2.4</version>
                <configuration>
                    <warSourceExcludes>META-INF/context.xml</warSourceExcludes>
                </configuration>
            </plugin>

これは動作します

于 2013-12-17T14:16:50.840 に答える