提交 | 用户 | age
|
c9ea16
|
1 |
<?xml version="1.0" encoding="UTF-8"?> |
E |
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 |
<modelVersion>4.0.0</modelVersion> |
|
6 |
|
|
7 |
<groupId>com.hx.gitee</groupId> |
|
8 |
<artifactId>hx-parent</artifactId> |
|
9 |
<version>1.0-SNAPSHOT</version> |
|
10 |
<packaging>pom</packaging> |
|
11 |
|
|
12 |
<parent> |
|
13 |
<groupId>org.springframework.boot</groupId> |
|
14 |
<artifactId>spring-boot-starter-parent</artifactId> |
53d469
|
15 |
<version>2.6.2</version> |
8e11c0
|
16 |
<relativePath/> <!-- lookup parent from repository --> |
c9ea16
|
17 |
</parent> |
E |
18 |
|
|
19 |
|
|
20 |
<!-- 依赖版本统一管理 --> |
|
21 |
<properties> |
|
22 |
<mybatis.version>1.1.1</mybatis.version> |
|
23 |
<druid.version>1.1.9</druid.version> |
|
24 |
<druid-boot.version>1.1.23</druid-boot.version> |
|
25 |
<fastjson.version>1.2.47</fastjson.version> |
|
26 |
<sfjson.version>2.4</sfjson.version> |
|
27 |
<orgApache.commons>3.9</orgApache.commons> |
|
28 |
<commons-io>2.6</commons-io> |
|
29 |
<orgApache.poi>3.9</orgApache.poi> |
|
30 |
<net.sourceforge>2.6.12</net.sourceforge> |
|
31 |
<pinyin4j>2.5.1</pinyin4j> |
|
32 |
<commons.lang.version>2.5</commons.lang.version> |
|
33 |
<ezmorph.version>1.0.3</ezmorph.version> |
|
34 |
<oss.version>2.8.3</oss.version> |
|
35 |
<jstl.api.version>1.2</jstl.api.version> |
ca923b
|
36 |
<spring.redis.version>2.7.0</spring.redis.version> |
20baad
|
37 |
<redisson.version>3.17.4</redisson.version> |
ca923b
|
38 |
<jackson.databind.version>2.13.3</jackson.databind.version> |
c9ea16
|
39 |
<cglib.version>3.1</cglib.version> |
E |
40 |
<shiro.version>1.3.2</shiro.version> |
|
41 |
<commons-beanutils.version>1.9.3</commons-beanutils.version> |
|
42 |
<commons-collections.version>3.2.2</commons-collections.version> |
|
43 |
<freemarker.version>2.3.28</freemarker.version> |
|
44 |
<java.jwt.version>3.10.3</java.jwt.version> |
|
45 |
<jjwt.version>0.9.1</jjwt.version> |
|
46 |
<pagehelper.version>5.1.11</pagehelper.version> |
6d8bfc
|
47 |
<pagehelper-boot.version>1.4.1</pagehelper-boot.version> |
c9ea16
|
48 |
<mail.version>1.6.2</mail.version> |
E |
49 |
<jdk15on.version>1.66</jdk15on.version> |
|
50 |
<dom4j.version>2.1.3</dom4j.version> |
|
51 |
<jdom.version>1.1.3</jdom.version> |
|
52 |
<httpcore.version>4.4.13</httpcore.version> |
|
53 |
<httpclient.version>4.5.12</httpclient.version> |
|
54 |
<!--mybatis自动生成--> |
|
55 |
<mybatis.actable>1.1.1.RELEASE</mybatis.actable> |
5fa5d8
|
56 |
<!--腾讯云cos--> |
411cfe
|
57 |
<cos.version>5.6.89</cos.version> |
f31ffb
|
58 |
<!--华为云cos--> |
ea9af7
|
59 |
<obs.version>3.20.6.2</obs.version> |
9e4b00
|
60 |
<!--加密器--> |
35ff86
|
61 |
<jasypt.version>2.1.2</jasypt.version> |
d954c8
|
62 |
<!--对象与XML处理--> |
C |
63 |
<jaxb.version>2.3.1</jaxb.version> |
c9ea16
|
64 |
</properties> |
E |
65 |
|
|
66 |
<!-- 声明依赖不引入 --> |
|
67 |
<dependencyManagement> |
|
68 |
<dependencies> |
|
69 |
|
d954c8
|
70 |
<!-- https://mvnrepository.com/artifact/javax.xml.bind/jaxb-api --> |
C |
71 |
<dependency> |
|
72 |
<groupId>javax.xml.bind</groupId> |
|
73 |
<artifactId>jaxb-api</artifactId> |
|
74 |
<version>${jaxb.version}</version> |
|
75 |
</dependency> |
|
76 |
|
9e4b00
|
77 |
<dependency> |
C |
78 |
<groupId>com.github.ulisesbocchio</groupId> |
|
79 |
<artifactId>jasypt-spring-boot-starter</artifactId> |
|
80 |
<version>${jasypt.version}</version> |
|
81 |
</dependency> |
|
82 |
|
7176be
|
83 |
<!-- https://mvnrepository.com/artifact/com.qcloud/cos_api --> |
5fa5d8
|
84 |
<dependency> |
C |
85 |
<groupId>com.qcloud</groupId> |
|
86 |
<artifactId>cos_api</artifactId> |
|
87 |
<version>${cos.version}</version> |
|
88 |
</dependency> |
|
89 |
|
c9ea16
|
90 |
<!-- mybatis分页 --> |
E |
91 |
<dependency> |
|
92 |
<groupId>com.github.pagehelper</groupId> |
|
93 |
<artifactId>pagehelper</artifactId> |
|
94 |
<version>${pagehelper.version}</version> |
|
95 |
</dependency> |
|
96 |
|
|
97 |
<!--新版mybatis分页分页--> |
|
98 |
<dependency> |
|
99 |
<groupId>com.github.pagehelper</groupId> |
|
100 |
<artifactId>pagehelper-spring-boot-starter</artifactId> |
|
101 |
<version>${pagehelper-boot.version}</version> |
|
102 |
</dependency> |
|
103 |
|
|
104 |
<dependency> |
|
105 |
<groupId>cglib</groupId> |
|
106 |
<artifactId>cglib</artifactId> |
|
107 |
<version>${cglib.version}</version> |
|
108 |
</dependency> |
|
109 |
|
|
110 |
<!-- 数据库自动生成表 --> |
|
111 |
<dependency> |
|
112 |
<groupId>com.gitee.sunchenbin.mybatis.actable</groupId> |
|
113 |
<artifactId>mybatis-enhance-actable</artifactId> |
|
114 |
<version>${mybatis.actable}</version> |
|
115 |
</dependency> |
|
116 |
|
|
117 |
<!--发送邮件--> |
|
118 |
<dependency> |
|
119 |
<groupId>com.sun.mail</groupId> |
|
120 |
<artifactId>javax.mail</artifactId> |
|
121 |
<version>${mail.version}</version> |
|
122 |
</dependency> |
|
123 |
|
|
124 |
<!-- 二维码支持包 --> |
|
125 |
<dependency> |
|
126 |
<groupId>com.google.zxing</groupId> |
|
127 |
<artifactId>core</artifactId> |
|
128 |
<version>3.3.0</version> |
|
129 |
</dependency> |
|
130 |
|
|
131 |
<dependency> |
|
132 |
<groupId>net.glxn</groupId> |
|
133 |
<artifactId>qrgen</artifactId> |
|
134 |
<version>1.4</version> |
|
135 |
</dependency> |
|
136 |
|
|
137 |
<!-- https://mvnrepository.com/artifact/org.jdom/jdom --> |
|
138 |
<dependency> |
|
139 |
<groupId>org.jdom</groupId> |
|
140 |
<artifactId>jdom</artifactId> |
|
141 |
<version>${jdom.version}</version> |
|
142 |
</dependency> |
|
143 |
<!-- https://mvnrepository.com/artifact/org.dom4j/dom4j --> |
|
144 |
<dependency> |
|
145 |
<groupId>org.dom4j</groupId> |
|
146 |
<artifactId>dom4j</artifactId> |
|
147 |
<version>${dom4j.version}</version> |
|
148 |
</dependency> |
|
149 |
|
|
150 |
<!-- https://mvnrepository.com/artifact/org.apache.httpcomponents/httpcore --> |
|
151 |
<dependency> |
|
152 |
<groupId>org.apache.httpcomponents</groupId> |
|
153 |
<artifactId>httpcore</artifactId> |
|
154 |
<version>${httpcore.version}</version> |
|
155 |
</dependency> |
|
156 |
<!-- https://mvnrepository.com/artifact/org.apache.httpcomponents/httpclient --> |
|
157 |
<dependency> |
|
158 |
<groupId>org.apache.httpcomponents</groupId> |
|
159 |
<artifactId>httpclient</artifactId> |
|
160 |
<version>${httpclient.version}</version> |
|
161 |
</dependency> |
|
162 |
|
|
163 |
|
|
164 |
<dependency> |
|
165 |
<groupId>com.auth0</groupId> |
|
166 |
<artifactId>java-jwt</artifactId> |
|
167 |
<version>${java.jwt.version}</version> |
|
168 |
</dependency> |
|
169 |
<dependency> |
|
170 |
<groupId>io.jsonwebtoken</groupId> |
|
171 |
<artifactId>jjwt</artifactId> |
|
172 |
<version>${jjwt.version}</version> |
|
173 |
</dependency> |
|
174 |
|
|
175 |
<dependency> |
|
176 |
<groupId>org.freemarker</groupId> |
|
177 |
<artifactId>freemarker</artifactId> |
|
178 |
<version>${freemarker.version}</version> |
|
179 |
</dependency> |
|
180 |
|
|
181 |
<!-- 字符串工具类jar:StringUtils --> |
|
182 |
<dependency> |
|
183 |
<groupId>org.apache.commons</groupId> |
|
184 |
<artifactId>commons-lang3</artifactId> |
|
185 |
<version>${orgApache.commons}</version> |
|
186 |
</dependency> |
|
187 |
|
|
188 |
<dependency> |
|
189 |
<groupId>commons-io</groupId> |
|
190 |
<artifactId>commons-io</artifactId> |
|
191 |
<version>${commons-io}</version> |
|
192 |
</dependency> |
|
193 |
|
|
194 |
<!-- https://mvnrepository.com/artifact/org.bouncycastle/bcprov-jdk15on --> |
|
195 |
<dependency> |
|
196 |
<groupId>org.bouncycastle</groupId> |
|
197 |
<artifactId>bcprov-jdk15on</artifactId> |
|
198 |
<version>${jdk15on.version}</version> |
|
199 |
</dependency> |
|
200 |
|
|
201 |
<!-- excel2003使用的jar --> |
|
202 |
<dependency> |
|
203 |
<groupId>org.apache.poi</groupId> |
|
204 |
<artifactId>poi</artifactId> |
|
205 |
<version>${orgApache.poi}</version> |
|
206 |
</dependency> |
|
207 |
|
2aa617
|
208 |
<!-- https://mvnrepository.com/artifact/org.apache.poi/poi-ooxml --> |
C |
209 |
<dependency> |
|
210 |
<groupId>org.apache.poi</groupId> |
|
211 |
<artifactId>poi-ooxml</artifactId> |
|
212 |
<version>3.9</version> |
|
213 |
</dependency> |
|
214 |
|
|
215 |
|
|
216 |
|
c9ea16
|
217 |
<dependency> |
E |
218 |
<groupId>redis.clients</groupId> |
|
219 |
<artifactId>jedis</artifactId> |
|
220 |
<version>${jedis.version}</version> |
|
221 |
</dependency> |
|
222 |
|
|
223 |
<dependency> |
|
224 |
<groupId>org.springframework.boot</groupId> |
|
225 |
<artifactId>spring-boot-starter-data-redis</artifactId> |
|
226 |
<version>${spring.redis.version}</version> |
|
227 |
</dependency> |
20baad
|
228 |
<!-- https://mvnrepository.com/artifact/org.redisson/redisson-spring-boot-starter --> |
C |
229 |
<dependency> |
|
230 |
<groupId>org.redisson</groupId> |
|
231 |
<artifactId>redisson-spring-boot-starter</artifactId> |
|
232 |
<version>${redisson.version}</version> |
|
233 |
</dependency> |
|
234 |
|
ca923b
|
235 |
<dependency> |
C |
236 |
<groupId>com.fasterxml.jackson.core</groupId> |
|
237 |
<artifactId>jackson-databind</artifactId> |
|
238 |
<version>${jackson.databind.version}</version> |
|
239 |
</dependency> |
c9ea16
|
240 |
|
E |
241 |
<dependency> |
|
242 |
<groupId>org.projectlombok</groupId> |
|
243 |
<artifactId>lombok</artifactId> |
|
244 |
<version>${lombok.version}</version> |
|
245 |
</dependency> |
|
246 |
<dependency> |
|
247 |
<groupId>junit</groupId> |
|
248 |
<artifactId>junit</artifactId> |
|
249 |
<version>${junit.version}</version> |
|
250 |
</dependency> |
|
251 |
<dependency> |
|
252 |
<groupId>javax.servlet.jsp.jstl</groupId> |
|
253 |
<artifactId>jstl-api</artifactId> |
|
254 |
<version>${jstl.api.version}</version> |
|
255 |
</dependency> |
f31ffb
|
256 |
|
C |
257 |
<!--阿里云oss--> |
c9ea16
|
258 |
<dependency> |
E |
259 |
<groupId>com.aliyun.oss</groupId> |
|
260 |
<artifactId>aliyun-sdk-oss</artifactId> |
|
261 |
<version>${oss.version}</version> |
|
262 |
</dependency> |
f31ffb
|
263 |
|
C |
264 |
<!--华为云obs(oss)--> |
|
265 |
<dependency> |
|
266 |
<groupId>com.huaweicloud</groupId> |
|
267 |
<artifactId>esdk-obs-java</artifactId> |
|
268 |
<version>${obs.version}</version> |
|
269 |
</dependency> |
|
270 |
|
c9ea16
|
271 |
<dependency> |
E |
272 |
<groupId>org.mybatis.spring.boot</groupId> |
|
273 |
<artifactId>mybatis-spring-boot-starter</artifactId> |
|
274 |
<version>${mybatis.version}</version> |
|
275 |
</dependency> |
|
276 |
<dependency> |
|
277 |
<groupId>mysql</groupId> |
|
278 |
<artifactId>mysql-connector-java</artifactId> |
|
279 |
<version>${mysql.version}</version> |
|
280 |
</dependency> |
|
281 |
<dependency> |
|
282 |
<groupId>com.alibaba</groupId> |
|
283 |
<artifactId>druid</artifactId> |
|
284 |
<version>${druid.version}</version> |
|
285 |
</dependency> |
|
286 |
|
|
287 |
<!--数据监控平台--> |
|
288 |
<dependency> |
|
289 |
<groupId>com.alibaba</groupId> |
|
290 |
<artifactId>druid-spring-boot-starter</artifactId> |
|
291 |
<version>${druid-boot.version}</version> |
|
292 |
</dependency> |
|
293 |
|
|
294 |
<dependency> |
|
295 |
<groupId>com.alibaba</groupId> |
|
296 |
<artifactId>fastjson</artifactId> |
|
297 |
<version>${fastjson.version}</version> |
|
298 |
</dependency> |
|
299 |
<dependency> |
|
300 |
<groupId>com.google.code.gson</groupId> |
|
301 |
<artifactId>gson</artifactId> |
|
302 |
<version>${gson.version}</version> |
|
303 |
</dependency> |
|
304 |
|
|
305 |
<dependency> |
|
306 |
<groupId>net.sf.json-lib</groupId> |
|
307 |
<artifactId>json-lib</artifactId> |
|
308 |
<version>${sfjson.version}</version> |
|
309 |
<classifier>jdk15</classifier> |
|
310 |
</dependency> |
|
311 |
<!-- <dependency> |
|
312 |
<groupId>net.sf.json-lib</groupId> |
|
313 |
<artifactId>json-lib</artifactId> |
|
314 |
<version>${sfjson.version}</version> |
|
315 |
</dependency> --> |
|
316 |
<!-- https://mvnrepository.com/artifact/net.sourceforge.jexcelapi/jxl --> |
|
317 |
<dependency> |
|
318 |
<groupId>net.sourceforge.jexcelapi</groupId> |
|
319 |
<artifactId>jxl</artifactId> |
|
320 |
<version>${net.sourceforge}</version> |
|
321 |
</dependency> |
|
322 |
<!-- https://mvnrepository.com/artifact/com.belerweb/pinyin4j --> |
|
323 |
<dependency> |
|
324 |
<groupId>com.belerweb</groupId> |
|
325 |
<artifactId>pinyin4j</artifactId> |
|
326 |
<version>${pinyin4j}</version> |
|
327 |
</dependency> |
|
328 |
<dependency> |
|
329 |
<groupId>commons-beanutils</groupId> |
|
330 |
<artifactId>commons-beanutils</artifactId> |
|
331 |
<version>${commons-beanutils.version}</version> |
|
332 |
</dependency> |
|
333 |
<dependency> |
|
334 |
<groupId>commons-collections</groupId> |
|
335 |
<artifactId>commons-collections</artifactId> |
|
336 |
<version>${commons-collections.version}</version> |
|
337 |
</dependency> |
|
338 |
<dependency> |
|
339 |
<groupId>commons-lang</groupId> |
|
340 |
<artifactId>commons-lang</artifactId> |
|
341 |
<version>${commons.lang.version}</version> |
|
342 |
</dependency> |
|
343 |
<dependency> |
|
344 |
<groupId>net.sf.ezmorph</groupId> |
|
345 |
<artifactId>ezmorph</artifactId> |
|
346 |
<version>${ezmorph.version}</version> |
|
347 |
</dependency> |
|
348 |
</dependencies> |
|
349 |
</dependencyManagement> |
|
350 |
|
|
351 |
</project> |