使用maven2 打ear包

<? xmlversion="1.0"encoding="UTF-8" ?>
< project xmlns ="http://maven.apache.org/POM/4.0.0"
xmlns:xsi
="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation
="http://maven.apache.org/POM/4.0.0http://maven.apache.org/maven-v4_0_0.xsd" >

< modelVersion > 4.0.0 </ modelVersion >
< groupId > PM_Member_EAR </ groupId >
< artifactId > PM_Member_EAR </ artifactId >
< packaging > ear </ packaging >
< version > 0.1-SNAPSHOT </ version >
< description ></ description >

< dependencies >
< dependency >
< groupId > com.newegg.lab </ groupId >
< artifactId > MemberWeb </ artifactId >
< version > 0.1-SNAPSHOT </ version >
< type > war </ type >
</ dependency >
< dependency >
< groupId > com.newegg.lab </ groupId >
< artifactId > frontWeb </ artifactId >
< version > 0.1-SNAPSHOT </ version >
< type > war </ type >
</ dependency >
</ dependencies >

< build >
< finalName > newegg </ finalName >
< plugins >
< plugin >
< groupId > org.apache.maven.plugins </ groupId >
< artifactId > maven-ear-plugin </ artifactId >
< configuration >
< modules >
< webModule >
< groupId > com.newegg.lab </ groupId >
< artifactId > MemberWeb </ artifactId >
< contextRoot >
/MemberWeb
</ contextRoot >

</ webModule >

< webModule >
< groupId > com.newegg.lab </ groupId >
< artifactId > frontWeb </ artifactId >
< contextRoot >
/frontWeb
</ contextRoot >

</ webModule >
</ modules >
</ configuration >
</ plugin >
</ plugins >
</ build >
</ project >

你可能感兴趣的:(maven2)