提交 | 用户 | 时间
|
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-web</artifactId> |
|
12 |
<packaging>jar</packaging> |
|
13 |
|
|
14 |
<name>${project.artifactId}</name> |
|
15 |
<description>Web 框架,全局异常、API 日志、脱敏、错误码等</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> |
449017
|
23 |
<dependency> |
D |
24 |
<groupId>com.baomidou</groupId> |
|
25 |
<artifactId>mybatis-plus-boot-starter</artifactId> <!-- 捕获mybatis全局异常 --> |
|
26 |
</dependency> |
e7c126
|
27 |
|
H |
28 |
<!-- Spring Boot 配置所需依赖 --> |
|
29 |
<dependency> |
|
30 |
<groupId>org.springframework.boot</groupId> |
|
31 |
<artifactId>spring-boot-configuration-processor</artifactId> |
|
32 |
<optional>true</optional> |
|
33 |
</dependency> |
|
34 |
|
|
35 |
<!-- Web 相关 --> |
|
36 |
<dependency> |
|
37 |
<groupId>org.springframework.boot</groupId> |
|
38 |
<artifactId>spring-boot-starter-web</artifactId> |
|
39 |
</dependency> |
|
40 |
|
|
41 |
<dependency> |
|
42 |
<groupId>org.springframework.boot</groupId> |
|
43 |
<artifactId>spring-boot-starter-validation</artifactId> |
|
44 |
</dependency> |
|
45 |
|
|
46 |
<dependency> |
|
47 |
<groupId>org.springframework.security</groupId> |
|
48 |
<artifactId>spring-security-core</artifactId> |
|
49 |
<!-- <scope>provided</scope> <!– 设置为 provided,主要是 GlobalExceptionHandler 使用 –>--> |
|
50 |
</dependency> |
|
51 |
|
|
52 |
<dependency> |
|
53 |
<groupId>com.github.xiaoymin</groupId> <!-- 接口文档 --> |
|
54 |
<artifactId>knife4j-openapi3-spring-boot-starter</artifactId> |
|
55 |
</dependency> |
|
56 |
<dependency> |
|
57 |
<groupId>org.springdoc</groupId> <!-- 接口文档 --> |
|
58 |
<artifactId>springdoc-openapi-ui</artifactId> |
|
59 |
</dependency> |
|
60 |
|
|
61 |
<!-- RPC 远程调用相关 --> |
|
62 |
<dependency> |
|
63 |
<groupId>com.iailab</groupId> |
|
64 |
<artifactId>iailab-common-rpc</artifactId> |
|
65 |
<optional>true</optional> |
|
66 |
</dependency> |
|
67 |
|
|
68 |
<!-- 业务组件 --> |
|
69 |
<dependency> |
|
70 |
<groupId>com.iailab</groupId> |
|
71 |
<artifactId>iailab-module-infra-api</artifactId> <!-- 需要使用它,进行操作日志的记录 --> |
|
72 |
<version>${revision}</version> |
|
73 |
</dependency> |
|
74 |
<dependency> |
|
75 |
<groupId>com.iailab</groupId> |
|
76 |
<artifactId>iailab-module-system-api</artifactId> <!-- 需要使用它,进行错误码的记录 --> |
|
77 |
<version>${revision}</version> |
|
78 |
</dependency> |
|
79 |
|
|
80 |
<!-- xss --> |
|
81 |
<dependency> |
|
82 |
<groupId>org.jsoup</groupId> |
|
83 |
<artifactId>jsoup</artifactId> |
|
84 |
</dependency> |
|
85 |
|
|
86 |
<!-- Test 测试相关 --> |
|
87 |
<dependency> |
|
88 |
<groupId>org.springframework.boot</groupId> |
|
89 |
<artifactId>spring-boot-starter-test</artifactId> |
|
90 |
<scope>test</scope> |
|
91 |
</dependency> |
|
92 |
<dependency> |
|
93 |
<groupId>org.mockito</groupId> |
|
94 |
<artifactId>mockito-inline</artifactId> |
|
95 |
<scope>test</scope> |
|
96 |
</dependency> |
|
97 |
</dependencies> |
|
98 |
|
|
99 |
</project> |