You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
75 lines
2.8 KiB
XML
75 lines
2.8 KiB
XML
3 years ago
|
<?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.ibeetl</groupId>
|
||
2 years ago
|
<artifactId>admin-framwork</artifactId>
|
||
3 years ago
|
<version>1.3.1</version>
|
||
|
</parent>
|
||
|
<modelVersion>4.0.0</modelVersion>
|
||
|
|
||
|
<artifactId>admin-test</artifactId>
|
||
|
|
||
|
<properties>
|
||
|
<!-- Test 测试相关 -->
|
||
|
<podam.version>7.2.6.RELEASE</podam.version>
|
||
|
<jedis-mock.version>0.1.16</jedis-mock.version>
|
||
|
<hutool-core.version>5.7.22</hutool-core.version>
|
||
|
<dynamic-beetlsql-spring-boot-starter.version>1.3.1</dynamic-beetlsql-spring-boot-starter.version>
|
||
|
</properties>
|
||
|
|
||
|
<dependencies>
|
||
|
<dependency>
|
||
|
<groupId>uk.co.jemos.podam</groupId> <!-- 单元测试,随机生成 POJO 类 -->
|
||
|
<artifactId>podam</artifactId>
|
||
|
<version>${podam.version}</version>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>mysql</groupId>
|
||
|
<artifactId>mysql-connector-java</artifactId>
|
||
|
</dependency>
|
||
|
|
||
|
<dependency>
|
||
|
<groupId>com.github.fppt</groupId> <!-- 单元测试,我们采用内嵌的 Redis 数据库 -->
|
||
|
<artifactId>jedis-mock</artifactId>
|
||
|
<version>${jedis-mock.version}</version>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>junit</groupId>
|
||
|
<artifactId>junit</artifactId>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>com.qeedata</groupId>
|
||
|
<artifactId>dynamic-beetlsql-spring-boot-starter</artifactId>
|
||
|
<version>${dynamic-beetlsql-spring-boot-starter.version}</version>
|
||
|
<scope>compile</scope>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>cn.hutool</groupId>
|
||
|
<artifactId>hutool-all</artifactId>
|
||
|
<version>${hutool-core.version}</version>
|
||
|
</dependency>
|
||
2 years ago
|
<dependency>
|
||
|
<groupId>org.springframework.boot</groupId>
|
||
|
<artifactId>spring-boot-test</artifactId>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>org.springframework</groupId>
|
||
|
<artifactId>spring-test</artifactId>
|
||
|
<version>5.3.8</version>
|
||
|
<scope>compile</scope>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>org.junit.jupiter</groupId>
|
||
|
<artifactId>junit-jupiter-api</artifactId>
|
||
|
<version>5.7.2</version>
|
||
|
<scope>compile</scope>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>org.mockito</groupId>
|
||
|
<artifactId>mockito-junit-jupiter</artifactId>
|
||
|
</dependency>
|
||
3 years ago
|
</dependencies>
|
||
|
|
||
|
</project>
|