<?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/xsd/maven-4.0.0.xsd">
    <modelVersion>4.0.0</modelVersion>

    <!-- 监控父项目 -->
    <parent>
        <artifactId>phoenix</artifactId>
        <groupId>com.gitee.pifeng</groupId>
        <version>1.2.1.RELEASE-CR2</version>
        <relativePath>..</relativePath>
    </parent>

    <!-- 项目基本信息 -->
    <artifactId>phoenix-common</artifactId>
    <name>phoenix-common</name>
    <packaging>pom</packaging>
    <modules>
        <!-- 监控公共模块 -->
        <module>phoenix-common-core</module>
        <!-- 监控WEB公共模块 -->
        <module>phoenix-common-web</module>
    </modules>
    <description>监控公共模块父工程</description>

    <!-- 依赖管理 -->
    <dependencyManagement>
        <dependencies>
            <!-- 监控公共模块 -->
            <dependency>
                <groupId>com.gitee.pifeng</groupId>
                <artifactId>phoenix-common-core</artifactId>
                <version>${revision}</version>
            </dependency>
            <!-- 监控WEB公共模块 -->
            <dependency>
                <groupId>com.gitee.pifeng</groupId>
                <artifactId>phoenix-common-web</artifactId>
                <version>${revision}</version>
            </dependency>
        </dependencies>
    </dependencyManagement>

</project>