<?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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
    <modelVersion>4.0.0</modelVersion>
    <parent>
        <artifactId>open-paas</artifactId>
        <groupId>com.ovopark</groupId>
        <version>1.0.0-SNAPSHOT</version>
    </parent>
    <name>paas-core</name>
    <artifactId>paas-core</artifactId>
    <properties>
        <java.version>1.8</java.version>
    </properties>
    <dependencies>
        <dependency>
            <groupId>org.apache.kafka</groupId>
            <artifactId>kafka-clients</artifactId>
        </dependency>

        <dependency>
            <groupId>org.springframework.security</groupId>
            <artifactId>spring-security-core</artifactId>
        </dependency>
        <!--内部包BEGIN-->
        <dependency>
            <groupId>com.ovopark</groupId>
            <artifactId>paas-repository</artifactId>
        </dependency>
        
        <dependency>
            <groupId>com.ovopark</groupId>
            <artifactId>paas-client</artifactId>
        </dependency>
        
        <dependency>
            <groupId>com.ovopark</groupId>
            <artifactId>paas-api</artifactId>
        </dependency>
        <!--内部包END-->

        <!--redis-->
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-data-redis</artifactId>
        </dependency>

        <dependency>
            <groupId>redis.clients</groupId>
            <artifactId>jedis</artifactId>
        </dependency>
        <dependency>
            <groupId>com.baomidou</groupId>
            <artifactId>mybatis-plus-extension</artifactId>
            <version>3.5.3.1</version>
            <scope>compile</scope>
        </dependency>
        <dependency>
            <groupId>org.springframework.kafka</groupId>
            <artifactId>spring-kafka</artifactId>
        </dependency>
        <!--redis-->
    </dependencies>

</project>
