`
thecloud
  • 浏览: 885940 次
文章分类
社区版块
存档分类
最新评论

使用maven2 打ear包

 
阅读更多
<?xmlversion="1.0"encoding="UTF-8"?>
<projectxmlns="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>
分享到:
评论
1 楼 enet_java 2013-08-06  
<artifactId>PM_Member_EAR</artifactId> 
对应一个单独的pom文件,
<artifactId>PM_Member_EAR</artifactId>
对应一个单独的pom文件,是不是这个意思?

相关推荐

Global site tag (gtag.js) - Google Analytics