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