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