<?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.crc.cgsc</groupId>
        <artifactId>dyc-umc</artifactId>
        <version>2.1.2-CLOUD-PROD-SNAPSHOT</version>
    </parent>

    <artifactId>cfc-api</artifactId>
    <packaging>jar</packaging>

    <dependencies>
        <!--引用不同rpc框架对应的依赖，根据maven不同profile，
        从父pom继承不同的dyc-rpc对应依赖，从而通过profile控制该打成什么架构的包
        极大的降低各中心各自维护出错的可能性-->
        <dependency>
            <groupId>com.crc.cgsc</groupId>
            <artifactId>dyc-rpc</artifactId>
        </dependency>

        <dependency>
            <groupId>com.ohaotian.plugin</groupId>
            <artifactId>plugin-base-api</artifactId>
        </dependency>

        <dependency>
            <groupId>com.ohaotian.plugin</groupId>
            <artifactId>plugin-common</artifactId>
        </dependency>

        <!--三方-->
        <dependency>
            <groupId>javax.validation</groupId>
            <artifactId>validation-api</artifactId>
        </dependency>
        <dependency>
            <groupId>org.hibernate.validator</groupId>
            <artifactId>hibernate-validator</artifactId>
        </dependency>
        <dependency>
            <groupId>com.fasterxml.jackson.core</groupId>
            <artifactId>jackson-annotations</artifactId>
        </dependency>
        <dependency>
            <groupId>org.apache.poi</groupId>
            <artifactId>poi-ooxml</artifactId>
        </dependency>
        <dependency>
            <groupId>com.ohaotian</groupId>
            <artifactId>lombok</artifactId>
        </dependency>
        <dependency>
            <groupId>com.tydic.utils</groupId>
            <artifactId>utils-code-doc-api</artifactId>
            <scope>provided</scope>
        </dependency>
    </dependencies>

</project>