MAVEN:合併war專案
阿新 • • 發佈:2018-11-04
MAVEN:兩個war專案合併
假設存在war專案A、B.
想把A合併到B中,
只需要在B的pom.xml中新增以下配置
- 要合併的war專案,在主war專案中新增依賴
<dependency> <artifactId>xxx</artifactId> <groupId>yy</groupId> <version>0.0.1-SNAPSHOT</version> <type>war</type> </dependency>
2.使用overlays合併
<groupId>org.apache.maven.plugins</groupId> <artifactId>maven-war-plugin</artifactId> <version>2.1.1</version> <configuration> <overlays> <overlay> <groupId>對應war工程的groupId</groupId> <artifactId>對應war工程的artifactId</artifactId> </overlay> </overlays> </configuration> </plugin>