<?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>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-starter-parent</artifactId>
        <version>2.0.1.RELEASE</version>
        <relativePath/>
    </parent>
    <modelVersion>4.0.0</modelVersion>
    <groupId>com.bizvane</groupId>
    <artifactId>wechat-enterprise-service</artifactId>
    <version>1.0.1-ledeng-SNAPSHOT</version>
    <packaging>jar</packaging>
    <name>wechat-enterprise-service</name>
    <description>wechat-enterprise-service</description>

    <properties>
        <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
        <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
        <java.version>1.8</java.version>
        <!--<spring-cloud.version>Finchley.RC1</spring-cloud.version>-->
        <netflix-version>2.0.0.RELEASE</netflix-version>
        <spring-boot.version>2.0.4.RELEASE</spring-boot.version>
    </properties>

    <dependencies>
        <dependency>
            <groupId>io.springfox</groupId>
            <artifactId>springfox-swagger2</artifactId>
            <version>2.7.0</version>
        </dependency>
        <dependency>
            <groupId>io.springfox</groupId>
            <artifactId>springfox-swagger-ui</artifactId>
            <version>2.7.0</version>
        </dependency>
        <dependency>
            <groupId>com.bizvane</groupId>
            <artifactId>mktcenter-service</artifactId>
            <version>1.0.0-ledeng-SNAPSHOT</version>
            <exclusions>
                <exclusion>
                    <artifactId>coupon-facade</artifactId>
                    <groupId>com.bizvane</groupId>
                </exclusion>
                <exclusion>
                    <artifactId>message-facade</artifactId>
                    <groupId>com.bizvane</groupId>
                </exclusion>
            </exclusions>
        </dependency>

        <!-- 公共工具包 -->
        <dependency>
            <groupId>com.bizvane</groupId>
            <artifactId>common-utils</artifactId>
            <version>1.1.0-SNAPSHOT</version>
        </dependency>

        <!--会员模块依赖-->
        <dependency>
            <groupId>com.bizvane</groupId>
            <artifactId>members-facade</artifactId>
            <version>1.0.0-ledeng-SNAPSHOT</version>
            <exclusions>
                <exclusion>
                    <artifactId>coupon-facade</artifactId>
                    <groupId>com.bizvane</groupId>
                </exclusion>
            </exclusions>
        </dependency>



        <dependency>
            <groupId>com.alibaba</groupId>
            <artifactId>fastjson</artifactId>
            <version>1.2.68</version>
        </dependency>

        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-web</artifactId>
            <version>${spring-boot.version}</version>
        </dependency>
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-thymeleaf</artifactId>
            <version>${spring-boot.version}</version>
        </dependency>
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-actuator</artifactId>
            <version>${spring-boot.version}</version>
        </dependency>
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-data-redis</artifactId>
            <version>${spring-boot.version}</version>
        </dependency>

        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-test</artifactId>
            <version>${spring-boot.version}</version>
        </dependency>
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-autoconfigure</artifactId>
            <version>${spring-boot.version}</version>
        </dependency>

        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-aop</artifactId>
            <version>${spring-boot.version}</version>
        </dependency>
        <dependency>
            <groupId>mysql</groupId>
            <artifactId>mysql-connector-java</artifactId>
            <version>5.1.46</version>
        </dependency>
        <dependency>
            <groupId>org.mybatis.spring.boot</groupId>
            <artifactId>mybatis-spring-boot-starter</artifactId>
            <version>1.3.2</version>
        </dependency>
        <dependency>
            <groupId>org.mybatis.spring.boot</groupId>
            <artifactId>mybatis-spring-boot-autoconfigure</artifactId>
            <version>1.3.2</version>
        </dependency>
        <dependency>
            <groupId>org.mybatis</groupId>
            <artifactId>mybatis-spring</artifactId>
            <version>1.3.2</version>
        </dependency>
        <dependency>
            <groupId>net.logstash.logback</groupId>
            <artifactId>logstash-logback-encoder</artifactId>
            <version>5.1</version>
        </dependency>
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-data-redis</artifactId>
            <version>${spring-boot.version}</version>
        </dependency>
        <dependency>
            <groupId>org.springframework</groupId>
            <artifactId>spring-context</artifactId>
            <version>5.3.12</version>
        </dependency>

        <dependency>
            <groupId>org.mybatis.generator</groupId>
            <artifactId>mybatis-generator-core</artifactId>
            <version>1.3.5</version>
        </dependency>

        <dependency>
            <groupId>com.bizvane</groupId>
            <artifactId>centerstage-service</artifactId>
            <version>1.0.6-ledeng-SNAPSHOT</version>
            <exclusions>
                <exclusion>
                    <artifactId>coupon-facade</artifactId>
                    <groupId>com.bizvane</groupId>
                </exclusion>
            </exclusions>
        </dependency>
        <dependency>
            <groupId>com.bizvane</groupId>
            <artifactId>coupon-facade</artifactId>
            <version>1.0.0-ledeng-SNAPSHOT</version>
            <exclusions>
                <exclusion>
                    <artifactId>members-facade</artifactId>
                    <groupId>com.bizvane</groupId>
                </exclusion>
            </exclusions>
        </dependency>

        <!--券模块依赖-->
        <!-- <dependency>
             <groupId>com.bizvane</groupId>
             <artifactId>coupon-facade</artifactId>
             <version>1.0.0</version>
         </dependency>-->
        <!--中台模块依赖-->
        <!--<dependency>
            <groupId>com.bizvane</groupId>
            <artifactId>centerstage-service</artifactId>
            <version>0.0.1-SNAPSHOT</version>
        </dependency>
        &lt;!&ndash;中台模块依赖&ndash;&gt;
        <dependency>
            <groupId>com.bizvane</groupId>
            <artifactId>applet-service</artifactId>
            <version>0.0.1-SNAPSHOT</version>
        </dependency>
        <dependency>
            <groupId>com.bizvane</groupId>
            <artifactId>fitment-service</artifactId>
            <version>0.0.1-SNAPSHOT</version>
        </dependency>
        &lt;!&ndash;中控模块依赖&ndash;&gt;
        <dependency>
            <groupId>com.bizvane</groupId>
            <artifactId>centercontrol-service</artifactId>
            <version>1.0.0</version>
        </dependency>-->

        <!-- 引入消息 -->
        <!--<dependency>
            <groupId>com.bizvane</groupId>
            <artifactId>message-facade</artifactId>
            <version>1.0.0</version>
        </dependency>
        &lt;!&ndash; 引入微信模块，二维码 &ndash;&gt;
        <dependency>
            <groupId>com.bizvane</groupId>
            <artifactId>wechat-facade</artifactId>
            <version>1.0.0</version>
        </dependency>-->

    </dependencies>



    <distributionManagement>
        <repository>
            <id>julu-release</id>
            <url>http://repo.bizvane.com/nexus/content/repositories/julu-release</url>
        </repository>
        <snapshotRepository>
            <id>snapshots</id>
            <url>http://repo.bizvane.com/nexus/content/repositories/snapshots</url>
        </snapshotRepository>
    </distributionManagement>

    <repositories>
        <repository>
            <id>julu</id>
            <name>julu</name>
            <url>http://repo.bizvane.com/nexus/content/groups/julu</url>
        </repository>
        <repository>
            <id>julu-release</id>
            <url>http://repo.bizvane.com/nexus/content/repositories/julu-release</url>
        </repository>
    </repositories>

</project>
