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