<?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>
    <artifactId>crm-api</artifactId>
    <packaging>jar</packaging>

    <parent>
        <groupId>com.izhaowo.crm.service</groupId>
        <artifactId>izhaowoCrmService</artifactId>
        <version>1.0.10-SNAPSHOT</version>
    </parent>

    <name>crm-api</name>
    <url>http://www.example.com</url>

    <properties>
        <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
        <maven.compiler.source>1.8</maven.compiler.source>
        <maven.compiler.target>1.8</maven.compiler.target>
    </properties>

    <dependencies>

        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-web</artifactId>
            <scope>provided</scope>
        </dependency>

        <dependency>
            <groupId>com.netflix.feign</groupId>
            <artifactId>feign-httpclient</artifactId>
            <version>8.16.2</version>
            <scope>provided</scope>
        </dependency>

        <!-- 声明式服务调用 -->
        <dependency>
            <groupId>org.springframework.cloud</groupId>
            <artifactId>spring-cloud-starter-feign</artifactId>
            <version>1.1.5.RELEASE</version>
            <scope>provided</scope>
            <!--<version>${spring-cloud.version}</version>-->
        </dependency>

        <!-- 基础代码 -->
        <dependency>
            <groupId>com.izhaowo.code.base</groupId>
            <artifactId>izhaowoCodeBase</artifactId>
            <version>0.0.1-SNAPSHOT</version>
            <scope>provided</scope>
        </dependency>


        <!-- 增加lombok -->
        <dependency>
            <groupId>org.projectlombok</groupId>
            <artifactId>lombok</artifactId>
            <optional>true</optional>
            <scope>compile</scope>
            <version>1.18.8</version>
        </dependency>

        <!-- 云店crm -->
        <dependency>
            <groupId>com.izhaowo.cloud.store.crm.service.rpc</groupId>
            <artifactId>izhaowoCloudStoreCrmServiceRpc</artifactId>
            <version>1551406450317</version>
            <scope>provided</scope>
        </dependency>

        <!-- 渠道COS -->
        <dependency>
            <groupId>com.izhaowo.cos.service.rpc</groupId>
            <artifactId>izhaowoCOSServiceRpc</artifactId>
            <version>1558496475474</version>
            <scope>provided</scope>
        </dependency>
        <dependency>
            <groupId>com.alibaba</groupId>
            <artifactId>fastjson</artifactId>
            <scope>provided</scope>
            <version>1.2.39</version>
        </dependency>


    </dependencies>
</project>
