<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>com.uidp</groupId>
  <artifactId>UidpWeb-all</artifactId>
  <packaging>pom</packaging>
  <version>1.0-RELEASE</version>
  <name>UidpWeb-all</name>
  <url>http://maven.apache.org</url>

    <modules>
    
        <!-- parent pom -->
        <module>parent</module>
        
        <!-- 公共资源文件，第三方js库，图片等媒体资源 -->
        <module>ThirdParty</module>
        
        <!-- 公共依赖，工具包 -->
		<module>common</module>

		<!-- 日志模块 -->
		<module>log/pom-pack.xml</module>
		
		<!-- 第三方客户定制服务模块 -->
        <module>biz/pom-pack.xml</module>
			
		<!-- 客户管理 -->
		<module>customer/pom-pack.xml</module>
		
		<!-- 策略模块-->
		<module>strategy/pom-pack.xml</module>
		
		<!-- 统计报表 -->
		<module>reports/pom-pack.xml</module>
		
		<!-- 监控统计 -->
		<module>monitor/pom-pack.xml</module>
		
		<!-- 系统管理模块 -->
        <module>sysmgr/pom-pack.xml</module>
        
        <!-- 统一打war包 -->
        <module>/pom-app.xml</module>

    </modules>
	
	<build>
		<plugins>
			<plugin>  
				<groupId>org.apache.tomcat.maven</groupId>
				<artifactId>tomcat7-maven-plugin</artifactId>
				<version>2.1</version>
				<configuration>
				   <port>8080</port>
				   <url>http://192.168.0.190:8080/manager/text</url>
				   <server>tomcat</server>
				   <update>true</update>
				   <username>admin</username>
				   <password>admin</password>
				</configuration>
			</plugin> 
		</plugins>
	</build>
</project>
