提交 | 用户 | 时间
|
e7c126
|
1 |
<?xml version="1.0" encoding="UTF-8"?> |
H |
2 |
<project xmlns="http://maven.apache.org/POM/4.0.0" |
|
3 |
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
|
4 |
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
|
5 |
<parent> |
|
6 |
<groupId>com.iailab</groupId> |
|
7 |
<artifactId>iailab-framework</artifactId> |
|
8 |
<version>${revision}</version> |
|
9 |
</parent> |
|
10 |
<modelVersion>4.0.0</modelVersion> |
|
11 |
<artifactId>iailab-common-test</artifactId> |
|
12 |
<packaging>jar</packaging> |
|
13 |
|
|
14 |
<name>${project.artifactId}</name> |
|
15 |
<description>测试组件,用于单元测试、集成测试</description> |
4d4165
|
16 |
<url>http://172.16.8.100:8888/summary/iailab-plat.git</url> |
e7c126
|
17 |
|
H |
18 |
<dependencies> |
|
19 |
<dependency> |
|
20 |
<groupId>com.iailab</groupId> |
|
21 |
<artifactId>iailab-common</artifactId> |
|
22 |
</dependency> |
|
23 |
|
|
24 |
<!-- DB 相关 --> |
|
25 |
<dependency> |
|
26 |
<groupId>com.iailab</groupId> |
|
27 |
<artifactId>iailab-common-mybatis</artifactId> |
|
28 |
</dependency> |
|
29 |
|
|
30 |
<dependency> |
|
31 |
<groupId>com.iailab</groupId> |
|
32 |
<artifactId>iailab-common-redis</artifactId> |
|
33 |
</dependency> |
|
34 |
|
|
35 |
<!-- Test 测试相关 --> |
|
36 |
<dependency> |
|
37 |
<groupId>org.mockito</groupId> |
|
38 |
<artifactId>mockito-inline</artifactId> |
|
39 |
</dependency> |
|
40 |
<dependency> |
|
41 |
<groupId>org.springframework.boot</groupId> |
|
42 |
<artifactId>spring-boot-starter-test</artifactId> |
|
43 |
</dependency> |
|
44 |
|
|
45 |
<dependency> |
|
46 |
<groupId>com.h2database</groupId> <!-- 单元测试,我们采用 H2 作为数据库 --> |
|
47 |
<artifactId>h2</artifactId> |
|
48 |
</dependency> |
|
49 |
|
|
50 |
<dependency> |
|
51 |
<groupId>com.github.fppt</groupId> <!-- 单元测试,我们采用内嵌的 Redis 数据库 --> |
|
52 |
<artifactId>jedis-mock</artifactId> |
|
53 |
</dependency> |
|
54 |
|
|
55 |
<dependency> |
|
56 |
<groupId>uk.co.jemos.podam</groupId> <!-- 单元测试,随机生成 POJO 类 --> |
|
57 |
<artifactId>podam</artifactId> |
|
58 |
</dependency> |
|
59 |
</dependencies> |
|
60 |
</project> |