<?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.6.RELEASE</version>
        <relativePath/>
    </parent>

    <groupId>com.bizvane</groupId>
    <artifactId>unified-reg-facade</artifactId>
    <version>1.0.0-vg-SNAPSHOT</version>
    <modelVersion>4.0.0</modelVersion>

    <properties>
        <java.version>1.8</java.version>
    </properties>

    <dependencies>
        <dependency>
            <groupId>com.bizvane</groupId>
            <artifactId>common-utils</artifactId>
            <version>1.0.5.1-SNAPSHOT</version>
        </dependency>

        <dependency>
            <groupId>org.projectlombok</groupId>
            <artifactId>lombok</artifactId>
            <version>1.16.22</version>
        </dependency>
        <dependency>
            <groupId>org.springframework.cloud</groupId>
            <artifactId>spring-cloud-openfeign-core</artifactId>
            <version>2.0.0.RC1</version>
        </dependency>

        <dependency>
            <groupId>com.bizvane</groupId>
            <artifactId>connector-service</artifactId>
            <version>1.0.0-vg-SNAPSHOT</version>
            <exclusions>
                <exclusion>
                    <groupId>com.bizvane</groupId>
                    <artifactId>base-controller</artifactId>
                </exclusion>
                <exclusion>
                    <groupId>com.bizvane</groupId>
                    <artifactId>coupon-facade</artifactId>
                </exclusion>
            </exclusions>
        </dependency>

        <dependency>
            <groupId>com.bizvane</groupId>
            <artifactId>members-facade</artifactId>
            <version>2.0.2-vg-SNAPSHOT</version>
            <exclusions>
                <exclusion>
                    <groupId>com.bizvane</groupId>
                    <artifactId>centerstage-service</artifactId>
                </exclusion>
                <exclusion>
                    <groupId>com.bizvane</groupId>
                    <artifactId>message-facade</artifactId>
                </exclusion>
                <exclusion>
                    <groupId>com.bizvane</groupId>
                    <artifactId>wechat-facade</artifactId>
                </exclusion>
                <exclusion>
                    <groupId>com.bizvane</groupId>
                    <artifactId>mktcenter-service</artifactId>
                </exclusion>
                <exclusion>
                    <groupId>com.bizvane</groupId>
                    <artifactId>core-facade</artifactId>
                </exclusion>
                <exclusion>
                    <groupId>com.bizvane</groupId>
                    <artifactId>etl-service</artifactId>
                </exclusion>
                <exclusion>
                    <groupId>com.bizvane</groupId>
                    <artifactId>coupon-facade</artifactId>
                </exclusion>
                <exclusion>
                    <groupId>org.springframework.cloud</groupId>
                    <artifactId>spring-cloud-starter-netflix-eureka-client</artifactId>
                </exclusion>
            </exclusions>
        </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>
        <repository>
            <id>sonatype-nexus-staging</id>
            <url>https://s01.oss.sonatype.org/service/local/staging/deploy/maven2/</url>
        </repository>
    </repositories>



</project>