<?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>
    <parent>
        <groupId>com.ovopark.boot.edas.ai</groupId>
        <artifactId>edas-ai-ocr</artifactId>
        <version>0.0.1-SNAPSHOT</version>
    </parent>
    <groupId>com.ovopark.boot.edas.ai</groupId>
    <artifactId>edas-ai-ocr-producer</artifactId>
    <version>0.0.1-SNAPSHOT</version>
    <name>edas-ai-ocr-producer</name>
    <description>ocr识别提供者</description>

    <properties>
        <java.version>1.8</java.version>
        <skipTests>true</skipTests>
        <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
        <maven.compiler.source>1.8</maven.compiler.source>
        <!-- image-api start-->
        <edas.ai.ocr.version>1.0.0</edas.ai.ocr.version>
        <!-- image-api end-->
        <!-- boot cloud start -->
        <boot.cloud.version>1.0.1</boot.cloud.version>
        <!-- boot cloud end -->
        <feign.version>10.1.0</feign.version>
    </properties>

    <dependencies>

        <dependency>
            <groupId>com.qcloud</groupId>
            <artifactId>qcloud-image-sdk</artifactId>
            <version>2.3.6</version>
        </dependency>

        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-configuration-processor</artifactId>
            <optional>true</optional>
        </dependency>

        <dependency>
            <groupId>org.projectlombok</groupId>
            <artifactId>lombok</artifactId>
            <optional>true</optional>
        </dependency>
        <dependency>
            <groupId>junit</groupId>
            <artifactId>junit</artifactId>
            <scope>test</scope>
        </dependency>
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-test</artifactId>
            <scope>test</scope>
            <exclusions>
                <exclusion>
                    <artifactId>asm</artifactId>
                    <groupId>org.ow2.asm</groupId>
                </exclusion>
            </exclusions>
        </dependency>

        <!-- image-api begin -->
        <dependency>
            <groupId>com.ovopark.boot.edas.ai</groupId>
            <artifactId>edas-ai-ocr-api</artifactId>
            <version>${edas.ai.ocr.version}</version>
            <type>jar</type>
        </dependency>
        <!-- image-api end -->

        <!-- boot cloud begin -->
        <dependency>
            <groupId>com.ovopark.boot</groupId>
            <artifactId>boot-core</artifactId>
            <version>${boot.cloud.version}</version>
            <type>jar</type>
        </dependency>
        <dependency>
            <groupId>com.ovopark.boot</groupId>
            <artifactId>boot-kit</artifactId>
            <version>${boot.cloud.version}</version>
            <type>jar</type>
        </dependency>
        <!-- boot cloud end -->

        <dependency>
            <groupId>io.github.openfeign</groupId>
            <artifactId>feign-core</artifactId>
            <version>${feign.version}</version>
        </dependency>
        <dependency>
            <groupId>io.github.openfeign</groupId>
            <artifactId>feign-slf4j</artifactId>
            <version>${feign.version}</version>
        </dependency>
        <dependency>
            <groupId>io.github.openfeign</groupId>
            <artifactId>feign-hystrix</artifactId>
            <version>${feign.version}</version>
            <exclusions>
                <exclusion>
                    <artifactId>guava</artifactId>
                    <groupId>com.google.guava</groupId>
                </exclusion>
                <exclusion>
                    <artifactId>archaius-core</artifactId>
                    <groupId>com.netflix.archaius</groupId>
                </exclusion>
            </exclusions>
        </dependency>
        <dependency>
            <groupId>io.github.openfeign</groupId>
            <artifactId>feign-jackson</artifactId>
            <version>${feign.version}</version>
        </dependency>

    </dependencies>

    <build>
        <plugins>
            <plugin>
                <groupId>org.springframework.boot</groupId>
                <artifactId>spring-boot-maven-plugin</artifactId>
                <executions>
                    <execution>
                        <goals>
                            <goal>repackage</goal>
                        </goals>
                    </execution>
                </executions>
            </plugin>
        </plugins>
    </build>
    <developers>
        <developer>
            <name>liushuai</name>
            <roles>
                <role>architect</role>
            </roles>
        </developer>
    </developers>
</project>
