0
点赞
收藏
分享

微信扫一扫

Maven用overlays合并多个war配置

<plugins>

<plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-war-plugin</artifactId> <version>2.6</version> <configuration> <packagingExcludes>WEB-INF/web.xml</packagingExcludes> <warName>asms-web</warName> <overlays> <overlay> <groupId>com.ccccc</groupId> <artifactId>cccc-01</artifactId> </overlay> <overlay> <groupId>com.ccccc</groupId> <artifactId>cccc-02</artifactId> </overlay> </overlays> </configuration> </plugin>

举报

相关推荐

0 条评论