<?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>

    <groupId>com.bizvane</groupId>
    <artifactId>members-facade</artifactId>
    <version>${members-facade.version}</version>
    <packaging>jar</packaging>


    <name>members-facade</name>
    <description>members-facade</description>

    <parent>
        <groupId>com.bizvane</groupId>
        <artifactId>members</artifactId>
        <version>0.0.1</version>
        <relativePath>../pom.xml</relativePath>
    </parent>

    <dependencies>

        <dependency>
            <groupId>org.springframework.cloud</groupId>
            <artifactId>spring-cloud-starter-netflix-eureka-client</artifactId>
        </dependency>
        <dependency>
            <groupId>org.springframework.cloud</groupId>
            <artifactId>spring-cloud-starter-netflix-zuul</artifactId>
        </dependency>
        <dependency>
            <groupId>org.springframework.cloud</groupId>
            <artifactId>spring-cloud-starter-openfeign</artifactId>
        </dependency>

        <dependency>
            <groupId>io.springfox</groupId>
            <artifactId>springfox-swagger2</artifactId>
        </dependency>
        <dependency>
            <groupId>io.springfox</groupId>
            <artifactId>springfox-swagger-ui</artifactId>
        </dependency>

        <dependency>
            <groupId>org.projectlombok</groupId>
            <artifactId>lombok</artifactId>
        </dependency>

        <dependency>
            <groupId>tk.mybatis</groupId>
            <artifactId>mapper</artifactId>
        </dependency>

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

        <!-- 中台接口 -->
        <dependency>
            <groupId>com.bizvane</groupId>
            <artifactId>centerstage-service</artifactId>
        </dependency>

        <!-- 券接口引入 -->
        <dependency>
            <groupId>com.bizvane</groupId>
            <artifactId>coupon-facade</artifactId>
            <exclusions>
                <exclusion>
                    <artifactId>members-facade</artifactId>
                    <groupId>com.bizvane</groupId>
                </exclusion>
            </exclusions>
        </dependency>

        <dependency>
            <groupId>com.bizvane</groupId>
            <artifactId>connector-service</artifactId>
        </dependency>

        <!-- 消息接口引入 -->
        <dependency>
            <groupId>com.bizvane</groupId>
            <artifactId>message-facade</artifactId>
        </dependency>

        <dependency>
            <groupId>com.bizvane</groupId>
            <artifactId>wechat-facade</artifactId>
        </dependency>

        <!-- 活动接口引入 -->
        <dependency>
            <groupId>com.bizvane</groupId>
            <artifactId>mktcenter-service</artifactId>
            <exclusions>
                <exclusion>
                    <artifactId>members-facade</artifactId>
                    <groupId>com.bizvane</groupId>
                </exclusion>
            </exclusions>
        </dependency>

        <!-- bizvane-core -->
        <dependency>
            <groupId>com.bizvane</groupId>
            <artifactId>core-facade</artifactId>
        </dependency>

        <dependency>
            <groupId>com.bizvane</groupId>
            <artifactId>etl-service</artifactId>
        </dependency>

        <dependency>
            <groupId>com.bizvane</groupId>
            <artifactId>service-export-task-inter</artifactId>
        </dependency>

        <dependency>
            <groupId>com.github.pagehelper</groupId>
            <artifactId>pagehelper</artifactId>
            <scope>compile</scope>
        </dependency>

        <!-- elasticsearch-->
        <dependency>
            <groupId>org.springframework.data</groupId>
            <artifactId>spring-data-elasticsearch</artifactId>
        </dependency>

        <dependency>
            <groupId>com.bizvane</groupId>
            <artifactId>service-tmall-inter</artifactId>
        </dependency>

        <dependency>
            <groupId>com.bizvane</groupId>
            <artifactId>service-members-label-record-inter</artifactId>
        </dependency>

        <dependency>
            <groupId>com.bizvane</groupId>
            <artifactId>wechat-enterprise-service</artifactId>
        </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>

    <build>
        <plugins>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-source-plugin</artifactId>
                <executions>
                    <execution>
                        <id>attach-sources</id>
                        <goals>
                            <goal>jar</goal>
                        </goals>
                    </execution>
                </executions>
            </plugin>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-compiler-plugin</artifactId>
                <configuration>
                    <source>${maven.compiler.source}</source>
                    <target>${maven.compiler.target}</target>
                </configuration>
            </plugin>
        </plugins>
    </build>
</project>
