69 lines
2.2 KiB
XML
69 lines
2.2 KiB
XML
<?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>
|
|
<groupId>com.orion.ops</groupId>
|
|
<artifactId>orion-ops-framework</artifactId>
|
|
<version>${revision}</version>
|
|
</parent>
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
<artifactId>orion-ops-spring-boot-starter-test</artifactId>
|
|
<name>${project.artifactId}</name>
|
|
<packaging>jar</packaging>
|
|
|
|
<description>项目单元测试包</description>
|
|
<url>https://github.com/lijiahangmax/orion-ops-pro</url>
|
|
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>com.orion.ops</groupId>
|
|
<artifactId>orion-ops-framework-common</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.orion.ops</groupId>
|
|
<artifactId>orion-ops-spring-boot-starter-mybatis</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.orion.ops</groupId>
|
|
<artifactId>orion-ops-spring-boot-starter-datasource</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.orion.ops</groupId>
|
|
<artifactId>orion-ops-spring-boot-starter-redis</artifactId>
|
|
</dependency>
|
|
|
|
<!-- test -->
|
|
<dependency>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-starter-test</artifactId>
|
|
</dependency>
|
|
|
|
<!-- test mockito -->
|
|
<dependency>
|
|
<groupId>org.mockito</groupId>
|
|
<artifactId>mockito-inline</artifactId>
|
|
</dependency>
|
|
|
|
<!-- test h2 -->
|
|
<dependency>
|
|
<groupId>com.h2database</groupId>
|
|
<artifactId>h2</artifactId>
|
|
</dependency>
|
|
|
|
<!-- test redis -->
|
|
<dependency>
|
|
<groupId>com.github.fppt</groupId>
|
|
<artifactId>jedis-mock</artifactId>
|
|
</dependency>
|
|
|
|
<!-- test entity 随机生成器 -->
|
|
<dependency>
|
|
<groupId>uk.co.jemos.podam</groupId>
|
|
<artifactId>podam</artifactId>
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
</project> |