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