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