<?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>
        <artifactId>jrack-springboot-parent</artifactId>
        <groupId>cn.jrack</groupId>
        <version>1.0.65</version>
    </parent>
    <modelVersion>4.0.0</modelVersion>

    <artifactId>jrack-test-springboot-starter</artifactId>

    <properties>
        <maven.compiler.source>8</maven.compiler.source>
        <maven.compiler.target>8</maven.compiler.target>
    </properties>
<dependencies>

    <dependency>
        <groupId>cn.jrack</groupId>
        <artifactId>jrack-core</artifactId>
    </dependency>
    <dependency>
        <groupId>cn.jrack</groupId>
        <artifactId>jrack-redis-springboot-starter</artifactId>
    </dependency>
    <dependency>
        <groupId>cn.jrack</groupId>
        <artifactId>jrack-mybatis-springboot-starter</artifactId>
    </dependency>
    <!-- Test 测试相关 -->
    <dependency>
        <groupId>org.mockito</groupId>
        <artifactId>mockito-inline</artifactId>
    </dependency>
    <dependency>
        <groupId>com.github.fppt</groupId> <!-- 单元测试，我们采用内嵌的 Redis 数据库 -->
        <artifactId>jedis-mock</artifactId>
    </dependency>

    <dependency>
        <groupId>uk.co.jemos.podam</groupId> <!-- 单元测试，随机生成 POJO 类 -->
        <artifactId>podam</artifactId>
    </dependency>
    <dependency>
        <groupId>junit</groupId>
        <artifactId>junit</artifactId>
    </dependency>
    <dependency>
        <groupId>org.junit.jupiter</groupId>
        <artifactId>junit-jupiter</artifactId>
    </dependency>
    <dependency>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-starter-test</artifactId>
    </dependency>
</dependencies>
</project>