<?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">

    <parent>
        <artifactId>event</artifactId>
        <groupId>com.vortex.fuyang</groupId>
        <version>0.0.1-SNAPSHOT</version>
    </parent>

    <modelVersion>4.0.0</modelVersion>
    <groupId>com.vortex.fuyang</groupId>
    <artifactId>event-application</artifactId>
    <version>0.0.1-SNAPSHOT</version>
    <name>event-application</name>
    <description>application</description>
    <properties>
        <java.version>1.8</java.version>
        <xiaoshan-auth-api.version>0.0.1-SNAPSHOT</xiaoshan-auth-api.version>
        <xiaoshan-usercenter-api.version>0.0.1-SNAPSHOT</xiaoshan-usercenter-api.version>
        <xiaoshan-message-api.version>0.0.1-SNAPSHOT</xiaoshan-message-api.version>
    </properties>

    <dependencies>

        <!-- 项目内部包 -->
        <dependency>
            <groupId>com.vortex.fuyang</groupId>
            <artifactId>common</artifactId>
        </dependency>
        <dependency>
            <groupId>com.vortex.fuyang</groupId>
            <artifactId>basicinfo-api</artifactId>
        </dependency>
        <dependency>
            <groupId>com.vortex.fuyang</groupId>
            <artifactId>event-api</artifactId>
            <version>0.0.1-SNAPSHOT</version>
        </dependency>
        <!-- 分布式文件服务 -->
        <dependency>
            <groupId>com.vortex.fuyang</groupId>
            <artifactId>dfs-ui</artifactId>
            <version>${dfs-ui.version}</version>
        </dependency>
        <dependency>
            <groupId>com.vortex.fuyang</groupId>
            <artifactId>auth-api</artifactId>
            <version>${xiaoshan-auth-api.version}</version>
        </dependency>
        <dependency>
            <groupId>com.vortex.fuyang</groupId>
            <artifactId>usercenter-api</artifactId>
            <version>${xiaoshan-usercenter-api.version}</version>
        </dependency>

        <dependency>
            <groupId>com.vortex.fuyang</groupId>
            <artifactId>message-api</artifactId>
            <version>${xiaoshan-message-api.version}</version>
        </dependency>
        <dependency>
            <groupId>com.vortex.fuyang</groupId>
            <artifactId>ewc-api</artifactId>
            <version>0.0.1-SNAPSHOT</version>
        </dependency>
        <dependency>
            <groupId>com.vortex.fuyang</groupId>
            <artifactId>lq-basic-api</artifactId>
        </dependency>

        <!-- vortex 公共-->
        <dependency>
            <groupId>com.vortex.tool</groupId>
            <artifactId>autotest-tool</artifactId>
        </dependency>
        <dependency>
            <groupId>com.vortex.tool</groupId>
            <artifactId>sw2-apidoc</artifactId>
        </dependency>
        <dependency>
            <groupId>joda-time</groupId>
            <artifactId>joda-time</artifactId>
        </dependency>
        <dependency>
            <groupId>com.github.xiaoymin</groupId>
            <artifactId>swagger-bootstrap-ui</artifactId>
            <version>1.9.3</version>
        </dependency>
        <dependency>
            <groupId>org.springframework.cloud</groupId>
            <artifactId>spring-cloud-starter-stream-rocketmq</artifactId>
        </dependency>
        <!-- 数据库 -->
        <dependency>
            <groupId>com.alibaba</groupId>
            <artifactId>druid-spring-boot-starter</artifactId>
        </dependency>
        <dependency>
            <groupId>com.baomidou</groupId>
            <artifactId>mybatis-plus-boot-starter</artifactId>
        </dependency>
        <dependency>
            <groupId>com.baomidou</groupId>
            <artifactId>mybatis-plus-generator</artifactId>
        </dependency>
        <dependency>
            <groupId>mysql</groupId>
            <artifactId>mysql-connector-java</artifactId>
        </dependency>
        <dependency>
            <groupId>org.apache.velocity</groupId>
            <artifactId>velocity-engine-core</artifactId>
        </dependency>

        <!-- spring boot -->
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-web</artifactId>
        </dependency>
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-test</artifactId>
        </dependency>

        <!-- spring cloud -->
        <dependency>
            <groupId>org.springframework.cloud</groupId>
            <artifactId>spring-cloud-starter-openfeign</artifactId>
        </dependency>
        <dependency>
            <groupId>org.springframework.cloud</groupId>
            <artifactId>spring-cloud-starter-netflix-eureka-client</artifactId>
        </dependency>
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-actuator</artifactId>
        </dependency>
        <dependency>
            <groupId>org.springframework.cloud</groupId>
            <artifactId>spring-cloud-starter-netflix-ribbon</artifactId>
        </dependency>
        <dependency>
            <groupId>io.github.openfeign</groupId>
            <artifactId>feign-httpclient</artifactId>
        </dependency>

        <!-- redis 缓存-->
        <dependency>
            <groupId>org.springframework.session</groupId>
            <artifactId>spring-session-data-redis</artifactId>
        </dependency>
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-data-redis</artifactId>
        </dependency>
        <dependency>
            <groupId>com.belerweb</groupId>
            <artifactId>pinyin4j</artifactId>
            <version>2.5.1</version>
        </dependency>
        <!-- quartz -->
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-quartz</artifactId>
        </dependency>
    </dependencies>


    <build>
        <plugins>
            <plugin>
                <groupId>org.springframework.boot</groupId>
                <artifactId>spring-boot-maven-plugin</artifactId>
                <configuration>
                    <includeSystemScope>true</includeSystemScope>
                </configuration>
            </plugin>
        </plugins>
    </build>

</project>