提交 | 用户 | 时间
|
0ca254
|
1 |
<?xml version="1.0" encoding="UTF-8"?> |
A |
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 |
<artifactId>jcdm</artifactId> |
|
7 |
<groupId>com.jcdm</groupId> |
|
8 |
<version>3.8.6</version> |
|
9 |
</parent> |
|
10 |
<modelVersion>4.0.0</modelVersion> |
|
11 |
|
|
12 |
<artifactId>jcdm-common</artifactId> |
|
13 |
|
|
14 |
<description> |
|
15 |
common通用工具 |
|
16 |
</description> |
|
17 |
|
|
18 |
<dependencies> |
|
19 |
|
|
20 |
<!-- Spring框架基本的核心工具 --> |
|
21 |
<dependency> |
|
22 |
<groupId>org.springframework</groupId> |
|
23 |
<artifactId>spring-context-support</artifactId> |
|
24 |
</dependency> |
|
25 |
|
|
26 |
<!-- SpringWeb模块 --> |
|
27 |
<dependency> |
|
28 |
<groupId>org.springframework</groupId> |
|
29 |
<artifactId>spring-web</artifactId> |
|
30 |
</dependency> |
|
31 |
|
|
32 |
<!-- spring security 安全认证 --> |
|
33 |
<dependency> |
|
34 |
<groupId>org.springframework.boot</groupId> |
|
35 |
<artifactId>spring-boot-starter-security</artifactId> |
|
36 |
</dependency> |
|
37 |
|
|
38 |
<!-- pagehelper 分页插件 --> |
|
39 |
<dependency> |
|
40 |
<groupId>com.github.pagehelper</groupId> |
|
41 |
<artifactId>pagehelper-spring-boot-starter</artifactId> |
|
42 |
</dependency> |
|
43 |
|
|
44 |
<!-- mybatis-plus 增强CRUD --> |
|
45 |
<dependency> |
|
46 |
<groupId>com.baomidou</groupId> |
|
47 |
<artifactId>mybatis-plus-boot-starter</artifactId> |
|
48 |
<version>3.4.2</version> |
|
49 |
</dependency> |
|
50 |
|
|
51 |
<!-- 自定义验证注解 --> |
|
52 |
<dependency> |
|
53 |
<groupId>org.springframework.boot</groupId> |
|
54 |
<artifactId>spring-boot-starter-validation</artifactId> |
|
55 |
</dependency> |
|
56 |
|
|
57 |
<!--常用工具类 --> |
|
58 |
<dependency> |
|
59 |
<groupId>org.apache.commons</groupId> |
|
60 |
<artifactId>commons-lang3</artifactId> |
|
61 |
</dependency> |
|
62 |
|
|
63 |
<!-- JSON工具类 --> |
|
64 |
<dependency> |
|
65 |
<groupId>com.fasterxml.jackson.core</groupId> |
|
66 |
<artifactId>jackson-databind</artifactId> |
|
67 |
</dependency> |
|
68 |
|
|
69 |
<!-- 动态数据源 --> |
|
70 |
<dependency> |
|
71 |
<groupId>com.baomidou</groupId> |
|
72 |
<artifactId>dynamic-datasource-spring-boot-starter</artifactId> |
|
73 |
<version>3.5.2</version> |
|
74 |
</dependency> |
|
75 |
|
|
76 |
<!-- 阿里JSON解析器 --> |
|
77 |
<dependency> |
|
78 |
<groupId>com.alibaba.fastjson2</groupId> |
|
79 |
<artifactId>fastjson2</artifactId> |
|
80 |
</dependency> |
|
81 |
|
|
82 |
<!-- io常用工具类 --> |
|
83 |
<dependency> |
|
84 |
<groupId>commons-io</groupId> |
|
85 |
<artifactId>commons-io</artifactId> |
|
86 |
</dependency> |
|
87 |
|
|
88 |
<!-- excel工具 --> |
|
89 |
<dependency> |
|
90 |
<groupId>org.apache.poi</groupId> |
|
91 |
<artifactId>poi-ooxml</artifactId> |
|
92 |
</dependency> |
|
93 |
|
|
94 |
<!-- yml解析器 --> |
|
95 |
<dependency> |
|
96 |
<groupId>org.yaml</groupId> |
|
97 |
<artifactId>snakeyaml</artifactId> |
|
98 |
</dependency> |
|
99 |
|
|
100 |
<!-- Token生成与解析--> |
|
101 |
<dependency> |
|
102 |
<groupId>io.jsonwebtoken</groupId> |
|
103 |
<artifactId>jjwt</artifactId> |
|
104 |
</dependency> |
|
105 |
|
|
106 |
<!-- Jaxb --> |
|
107 |
<dependency> |
|
108 |
<groupId>javax.xml.bind</groupId> |
|
109 |
<artifactId>jaxb-api</artifactId> |
|
110 |
</dependency> |
|
111 |
|
|
112 |
<!-- redis 缓存操作 --> |
|
113 |
<dependency> |
|
114 |
<groupId>org.springframework.boot</groupId> |
|
115 |
<artifactId>spring-boot-starter-data-redis</artifactId> |
|
116 |
</dependency> |
|
117 |
|
|
118 |
<!-- pool 对象池 --> |
|
119 |
<dependency> |
|
120 |
<groupId>org.apache.commons</groupId> |
|
121 |
<artifactId>commons-pool2</artifactId> |
|
122 |
</dependency> |
|
123 |
|
|
124 |
<!-- 解析客户端操作系统、浏览器等 --> |
|
125 |
<dependency> |
|
126 |
<groupId>eu.bitwalker</groupId> |
|
127 |
<artifactId>UserAgentUtils</artifactId> |
|
128 |
</dependency> |
|
129 |
|
|
130 |
<!-- servlet包 --> |
|
131 |
<dependency> |
|
132 |
<groupId>javax.servlet</groupId> |
|
133 |
<artifactId>javax.servlet-api</artifactId> |
|
134 |
</dependency> |
|
135 |
|
|
136 |
<!-- mybatis-plus 增强CRUD --> |
|
137 |
<dependency> |
|
138 |
<groupId>com.baomidou</groupId> |
|
139 |
<artifactId>mybatis-plus-boot-starter</artifactId> |
|
140 |
<version>3.4.1</version> |
|
141 |
</dependency> |
|
142 |
|
|
143 |
</dependencies> |
|
144 |
|
|
145 |
</project> |