chenjiahe
2022-08-11 7d6d62d17f7d357261bdbb0d692ba06e589d1e9c
提交 | 用户 | 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>
7d6d62 64         <fileupload.version>1.4</fileupload.version>
c9ea16 65     </properties>
E 66
67     <!-- 声明依赖不引入 -->
68     <dependencyManagement>
69         <dependencies>
70
7d6d62 71             <!--File转MultipartFile-->
C 72             <dependency>
73                 <groupId>commons-fileupload</groupId>
74                 <artifactId>commons-fileupload</artifactId>
75                 <version>${fileupload.version}</version>
76             </dependency>
77
d954c8 78             <!-- https://mvnrepository.com/artifact/javax.xml.bind/jaxb-api -->
C 79             <dependency>
80                 <groupId>javax.xml.bind</groupId>
81                 <artifactId>jaxb-api</artifactId>
82                 <version>${jaxb.version}</version>
83             </dependency>
84
9e4b00 85             <dependency>
C 86                 <groupId>com.github.ulisesbocchio</groupId>
87                 <artifactId>jasypt-spring-boot-starter</artifactId>
88                 <version>${jasypt.version}</version>
89             </dependency>
90
7176be 91             <!-- https://mvnrepository.com/artifact/com.qcloud/cos_api -->
5fa5d8 92             <dependency>
C 93                 <groupId>com.qcloud</groupId>
94                 <artifactId>cos_api</artifactId>
95                 <version>${cos.version}</version>
96             </dependency>
97
c9ea16 98             <!-- mybatis分页 -->
E 99             <dependency>
100                 <groupId>com.github.pagehelper</groupId>
101                 <artifactId>pagehelper</artifactId>
102                 <version>${pagehelper.version}</version>
103             </dependency>
104
105             <!--新版mybatis分页分页-->
106             <dependency>
107                 <groupId>com.github.pagehelper</groupId>
108                 <artifactId>pagehelper-spring-boot-starter</artifactId>
109                 <version>${pagehelper-boot.version}</version>
110             </dependency>
111
112             <dependency>
113                 <groupId>cglib</groupId>
114                 <artifactId>cglib</artifactId>
115                 <version>${cglib.version}</version>
116             </dependency>
117
118             <!-- 数据库自动生成表 -->
119             <dependency>
120                 <groupId>com.gitee.sunchenbin.mybatis.actable</groupId>
121                 <artifactId>mybatis-enhance-actable</artifactId>
122                 <version>${mybatis.actable}</version>
123             </dependency>
124
125             <!--发送邮件-->
126             <dependency>
127                 <groupId>com.sun.mail</groupId>
128                 <artifactId>javax.mail</artifactId>
129                 <version>${mail.version}</version>
130             </dependency>
131
132             <!-- 二维码支持包 -->
133             <dependency>
134                 <groupId>com.google.zxing</groupId>
135                 <artifactId>core</artifactId>
136                 <version>3.3.0</version>
137             </dependency>
138
139             <dependency>
140                 <groupId>net.glxn</groupId>
141                 <artifactId>qrgen</artifactId>
142                 <version>1.4</version>
143             </dependency>
144
145             <!-- https://mvnrepository.com/artifact/org.jdom/jdom -->
146             <dependency>
147                 <groupId>org.jdom</groupId>
148                 <artifactId>jdom</artifactId>
149                 <version>${jdom.version}</version>
150             </dependency>
151             <!-- https://mvnrepository.com/artifact/org.dom4j/dom4j -->
152             <dependency>
153                 <groupId>org.dom4j</groupId>
154                 <artifactId>dom4j</artifactId>
155                 <version>${dom4j.version}</version>
156             </dependency>
157
158             <!-- https://mvnrepository.com/artifact/org.apache.httpcomponents/httpcore -->
159             <dependency>
160                 <groupId>org.apache.httpcomponents</groupId>
161                 <artifactId>httpcore</artifactId>
162                 <version>${httpcore.version}</version>
163             </dependency>
164             <!-- https://mvnrepository.com/artifact/org.apache.httpcomponents/httpclient -->
165             <dependency>
166                 <groupId>org.apache.httpcomponents</groupId>
167                 <artifactId>httpclient</artifactId>
168                 <version>${httpclient.version}</version>
169             </dependency>
170
171
172             <dependency>
173                 <groupId>com.auth0</groupId>
174                 <artifactId>java-jwt</artifactId>
175                 <version>${java.jwt.version}</version>
176             </dependency>
177             <dependency>
178                 <groupId>io.jsonwebtoken</groupId>
179                 <artifactId>jjwt</artifactId>
180                 <version>${jjwt.version}</version>
181             </dependency>
182
183             <dependency>
184                 <groupId>org.freemarker</groupId>
185                 <artifactId>freemarker</artifactId>
186                 <version>${freemarker.version}</version>
187             </dependency>
188
189             <!-- 字符串工具类jar:StringUtils -->
190             <dependency>
191                 <groupId>org.apache.commons</groupId>
192                 <artifactId>commons-lang3</artifactId>
193                 <version>${orgApache.commons}</version>
194             </dependency>
195
196             <dependency>
197                 <groupId>commons-io</groupId>
198                 <artifactId>commons-io</artifactId>
199                 <version>${commons-io}</version>
200             </dependency>
201
202             <!-- https://mvnrepository.com/artifact/org.bouncycastle/bcprov-jdk15on -->
203             <dependency>
204                 <groupId>org.bouncycastle</groupId>
205                 <artifactId>bcprov-jdk15on</artifactId>
206                 <version>${jdk15on.version}</version>
207             </dependency>
208
209             <!-- excel2003使用的jar -->
210             <dependency>
211                 <groupId>org.apache.poi</groupId>
212                 <artifactId>poi</artifactId>
213                 <version>${orgApache.poi}</version>
214             </dependency>
215
2aa617 216             <!-- https://mvnrepository.com/artifact/org.apache.poi/poi-ooxml -->
C 217             <dependency>
218                 <groupId>org.apache.poi</groupId>
219                 <artifactId>poi-ooxml</artifactId>
220                 <version>3.9</version>
221             </dependency>
222
223
224
c9ea16 225             <dependency>
E 226                 <groupId>redis.clients</groupId>
227                 <artifactId>jedis</artifactId>
228                 <version>${jedis.version}</version>
229             </dependency>
230
231             <dependency>
232                 <groupId>org.springframework.boot</groupId>
233                 <artifactId>spring-boot-starter-data-redis</artifactId>
234                 <version>${spring.redis.version}</version>
235             </dependency>
20baad 236             <!-- https://mvnrepository.com/artifact/org.redisson/redisson-spring-boot-starter -->
C 237             <dependency>
238                 <groupId>org.redisson</groupId>
239                 <artifactId>redisson-spring-boot-starter</artifactId>
240                 <version>${redisson.version}</version>
241             </dependency>
242
ca923b 243             <dependency>
C 244                 <groupId>com.fasterxml.jackson.core</groupId>
245                 <artifactId>jackson-databind</artifactId>
246                 <version>${jackson.databind.version}</version>
247             </dependency>
c9ea16 248
E 249             <dependency>
250                 <groupId>org.projectlombok</groupId>
251                 <artifactId>lombok</artifactId>
252                 <version>${lombok.version}</version>
253             </dependency>
254             <dependency>
255                 <groupId>junit</groupId>
256                 <artifactId>junit</artifactId>
257                 <version>${junit.version}</version>
258             </dependency>
259             <dependency>
260                 <groupId>javax.servlet.jsp.jstl</groupId>
261                 <artifactId>jstl-api</artifactId>
262                 <version>${jstl.api.version}</version>
263             </dependency>
f31ffb 264
C 265             <!--阿里云oss-->
c9ea16 266             <dependency>
E 267                 <groupId>com.aliyun.oss</groupId>
268                 <artifactId>aliyun-sdk-oss</artifactId>
269                 <version>${oss.version}</version>
270             </dependency>
f31ffb 271
C 272             <!--华为云obs(oss)-->
273             <dependency>
274                 <groupId>com.huaweicloud</groupId>
275                 <artifactId>esdk-obs-java</artifactId>
276                 <version>${obs.version}</version>
277             </dependency>
278
c9ea16 279             <dependency>
E 280                 <groupId>org.mybatis.spring.boot</groupId>
281                 <artifactId>mybatis-spring-boot-starter</artifactId>
282                 <version>${mybatis.version}</version>
283             </dependency>
284             <dependency>
285                 <groupId>mysql</groupId>
286                 <artifactId>mysql-connector-java</artifactId>
287                 <version>${mysql.version}</version>
288             </dependency>
289             <dependency>
290                 <groupId>com.alibaba</groupId>
291                 <artifactId>druid</artifactId>
292                 <version>${druid.version}</version>
293             </dependency>
294
295             <!--数据监控平台-->
296             <dependency>
297                 <groupId>com.alibaba</groupId>
298                 <artifactId>druid-spring-boot-starter</artifactId>
299                 <version>${druid-boot.version}</version>
300             </dependency>
301
302             <dependency>
303                 <groupId>com.alibaba</groupId>
304                 <artifactId>fastjson</artifactId>
305                 <version>${fastjson.version}</version>
306             </dependency>
307             <dependency>
308                 <groupId>com.google.code.gson</groupId>
309                 <artifactId>gson</artifactId>
310                 <version>${gson.version}</version>
311             </dependency>
312
313             <dependency>
314                 <groupId>net.sf.json-lib</groupId>
315                 <artifactId>json-lib</artifactId>
316                 <version>${sfjson.version}</version>
317                 <classifier>jdk15</classifier>
318             </dependency>
319             <!-- <dependency>
320                 <groupId>net.sf.json-lib</groupId>
321                 <artifactId>json-lib</artifactId>
322                 <version>${sfjson.version}</version>
323             </dependency> -->
324             <!-- https://mvnrepository.com/artifact/net.sourceforge.jexcelapi/jxl -->
325             <dependency>
326                 <groupId>net.sourceforge.jexcelapi</groupId>
327                 <artifactId>jxl</artifactId>
328                 <version>${net.sourceforge}</version>
329             </dependency>
330             <!-- https://mvnrepository.com/artifact/com.belerweb/pinyin4j -->
331             <dependency>
332                 <groupId>com.belerweb</groupId>
333                 <artifactId>pinyin4j</artifactId>
334                 <version>${pinyin4j}</version>
335             </dependency>
336             <dependency>
337                 <groupId>commons-beanutils</groupId>
338                 <artifactId>commons-beanutils</artifactId>
339                 <version>${commons-beanutils.version}</version>
340             </dependency>
341             <dependency>
342                 <groupId>commons-collections</groupId>
343                 <artifactId>commons-collections</artifactId>
344                 <version>${commons-collections.version}</version>
345             </dependency>
346             <dependency>
347                 <groupId>commons-lang</groupId>
348                 <artifactId>commons-lang</artifactId>
349                 <version>${commons.lang.version}</version>
350             </dependency>
351             <dependency>
352                 <groupId>net.sf.ezmorph</groupId>
353                 <artifactId>ezmorph</artifactId>
354                 <version>${ezmorph.version}</version>
355             </dependency>
356         </dependencies>
357     </dependencyManagement>
358
359 </project>