<?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>
        <groupId>cn.sunxiansheng</groupId>
        <artifactId>sunrays-dependencies</artifactId>
        <version>0.0.6</version>
        <!-- 当要继承的模块不是目录中的当前模块的父模块时使用 -->
        <relativePath/>
    </parent>

    <artifactId>sunrays-framework</artifactId>
    <!-- 这里必须指定自己的版本，否则使用mvn versions 设置版本的时候会有问题 -->
    <version>0.0.6</version>

    <!-- 项目名 -->
    <name>${project.groupId}:${project.artifactId}</name>
    <!-- 简单描述 -->
    <description>统一管理整个项目的打包操作</description>
    <!-- 开源地址 -->
    <url>https://gitee.com/qyxinhua_0/sunrays-framework</url>

    <!-- 统一管理子模块 -->
    <packaging>pom</packaging>
    <modules>
        <module>sunrays-common-demo</module>
        <module>sunrays-common</module>
        <module>sunrays-combinations</module>
        <module>sunrays-common-cloud</module>
        <module>sunrays-combinations-demo</module>
    </modules>
</project>