maven-pluginManagement2

来源:互联网 发布:上海盘石软件好吗 编辑:程序博客网 时间:2024/04/28 18:00
 <plugin>
                    <groupId>org.apache.maven.plugins</groupId>
                    <artifactId>maven-war-plugin</artifactId>
                    <version>2.1</version>
                    <extensions>true</extensions>
                    <configuration>
                        <outputDirectory>${dir.sms.war}</outputDirectory>
                        <packagingExcludes>WEB-INF/classes/META-INF/**,WEB-INF/lib/**</packagingExcludes>
                        <archive>
                            <manifestFile>${project.build.outputDirectory}/META-INF/MANIFEST.MF</manifestFile>
                        </archive>
                        <webResources>
                            <resource>
                                <directory>${project.build.outputDirectory}/META-INF</directory>
                                <targetPath>META-INF</targetPath>
                            </resource>
                        </webResources>
                    </configuration>
                </plugin>
          </plugins>