当前位置:编程学习 > 网站相关 >>

使用maven2 打ear包

<?xml version="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.0 http://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>

 

补充:综合编程 , 其他综合 ,
CopyRight © 2022 站长资源库 编程知识问答 zzzyk.com All Rights Reserved
部分文章来自网络,