fhx
2024-08-28 e736974ca9a35b2440360d6aea09001f8548d4d5
提交 | 用户 | 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         <net.sourceforge>2.6.12</net.sourceforge>
38         <pinyin4j>2.5.1</pinyin4j>
39         <commons.lang.version>2.5</commons.lang.version>
40         <ezmorph.version>1.0.3</ezmorph.version>
41         <oss.version>2.8.3</oss.version>
42         <jstl.api.version>1.2</jstl.api.version>
43         <spring.redis.version>1.4.2.RELEASE</spring.redis.version>
44         <cglib.version>3.1</cglib.version>
45         <shiro.version>1.3.2</shiro.version>
46         <commons-beanutils.version>1.9.3</commons-beanutils.version>
47         <commons-collections.version>3.2.2</commons-collections.version>
48         <freemarker.version>2.3.28</freemarker.version>
49         <java.jwt.version>3.10.3</java.jwt.version>
50         <jjwt.version>0.9.1</jjwt.version>
51         <pagehelper.version>5.1.11</pagehelper.version>
c2710a 52         <pagehelper-boot.version>1.4.1</pagehelper-boot.version>
496b6c 53         <mail.version>1.6.2</mail.version>
C 54         <jdk15on.version>1.66</jdk15on.version>
55         <dom4j.version>2.1.3</dom4j.version>
56         <jdom.version>1.1.3</jdom.version>
57         <httpcore.version>4.4.13</httpcore.version>
58         <httpclient.version>4.5.12</httpclient.version>
59         <!--mybatis自动生成-->
60         <mybatis.actable>1.1.1.RELEASE</mybatis.actable>
61         <!--腾讯云cos-->
62         <cos.version>5.6.32</cos.version>
63         <!--加密器-->
64         <jasypt.version>2.1.2</jasypt.version>
65         <!--对象与XML处理-->
66         <jaxb.version>2.3.1</jaxb.version>
6d7416 67
Z 68         <nacos-discovery.version>2021.1</nacos-discovery.version>
69         <nacos-config.version>2021.1</nacos-config.version>
70         <bootstrap.version>3.1.0</bootstrap.version>
71         <cloud-context.version>3.1.0</cloud-context.version>
72         <cloud-commons.version>3.1.0</cloud-commons.version>
73         <open.version>3.1.0</open.version>
74         <openfeign.version>3.1.0</openfeign.version>
75         <loadbalancer.version>3.1.0</loadbalancer.version>
76
496b6c 77     </properties>
C 78
79     <!-- 声明依赖不引入 -->
80     <dependencyManagement>
81         <dependencies>
82
6d7416 83             <dependency>
Z 84                 <groupId>com.alibaba.cloud</groupId>
85                 <artifactId>spring-cloud-starter-alibaba-nacos-discovery</artifactId>
86                 <version>${nacos-discovery.version}</version>
87             </dependency>
88             <!-- https://mvnrepository.com/artifact/com.alibaba.cloud/spring-cloud-starter-alibaba-nacos-config -->
89             <dependency>
90                 <groupId>com.alibaba.cloud</groupId>
91                 <artifactId>spring-cloud-starter-alibaba-nacos-config</artifactId>
92                 <version>${nacos-config.version}</version>
93             </dependency>
94             <!-- https://mvnrepository.com/artifact/org.springframework.cloud/spring-cloud-starter-bootstrap -->
95             <dependency>
96                 <groupId>org.springframework.cloud</groupId>
97                 <artifactId>spring-cloud-starter-bootstrap</artifactId>
98                 <version>${bootstrap.version}</version>
99             </dependency>
100             <!-- https://mvnrepository.com/artifact/org.springframework.cloud/spring-cloud-context -->
101             <dependency>
102                 <groupId>org.springframework.cloud</groupId>
103                 <artifactId>spring-cloud-context</artifactId>
104                 <version>${cloud-context.version}</version>
105             </dependency>
106             <!-- https://mvnrepository.com/artifact/org.springframework.cloud/spring-cloud-commons -->
107             <dependency>
108                 <groupId>org.springframework.cloud</groupId>
109                 <artifactId>spring-cloud-commons</artifactId>
110                 <version>${cloud-commons.version}</version>
111             </dependency>
112             <dependency>
113                 <groupId>com.github.ulisesbocchio</groupId>
114                 <artifactId>jasypt-spring-boot-starter</artifactId>
115                 <version>${jasypt.version}</version>
116             </dependency>
117             <!-- openfeign支持-->
118             <dependency>
119                 <groupId>org.springframework.cloud</groupId>
120                 <artifactId>spring-cloud-starter-openfeign</artifactId>
121                 <version>${openfeign.version}</version>
122             </dependency>
123             <dependency>
124                 <groupId>org.springframework.cloud</groupId>
125                 <artifactId>spring-cloud-starter-loadbalancer</artifactId>
126                 <version>${loadbalancer.version}</version>
127             </dependency>
128             <!-- https://mvnrepository.com/artifact/javax.xml.bind/jaxb-api -->
129             <dependency>
130                 <groupId>javax.xml.bind</groupId>
131                 <artifactId>jaxb-api</artifactId>
132                 <version>${jaxb.version}</version>
133             </dependency>
134
496b6c 135             <!-- https://mvnrepository.com/artifact/com.qcloud/cos_api -->
C 136             <dependency>
137                 <groupId>com.qcloud</groupId>
138                 <artifactId>cos_api</artifactId>
139                 <version>${cos.version}</version>
140             </dependency>
141
142             <!-- mybatis分页 -->
143             <dependency>
144                 <groupId>com.github.pagehelper</groupId>
145                 <artifactId>pagehelper</artifactId>
146                 <version>${pagehelper.version}</version>
147             </dependency>
148
149             <!--新版mybatis分页分页-->
150             <dependency>
151                 <groupId>com.github.pagehelper</groupId>
152                 <artifactId>pagehelper-spring-boot-starter</artifactId>
153                 <version>${pagehelper-boot.version}</version>
154             </dependency>
155
156             <dependency>
157                 <groupId>cglib</groupId>
158                 <artifactId>cglib</artifactId>
159                 <version>${cglib.version}</version>
160             </dependency>
161
162             <!-- 数据库自动生成表 -->
163             <dependency>
164                 <groupId>com.gitee.sunchenbin.mybatis.actable</groupId>
165                 <artifactId>mybatis-enhance-actable</artifactId>
166                 <version>${mybatis.actable}</version>
167             </dependency>
168
169             <!--发送邮件-->
170             <dependency>
171                 <groupId>com.sun.mail</groupId>
172                 <artifactId>javax.mail</artifactId>
173                 <version>${mail.version}</version>
174             </dependency>
175
176             <!-- 二维码支持包 -->
177             <dependency>
178                 <groupId>com.google.zxing</groupId>
179                 <artifactId>core</artifactId>
180                 <version>3.3.0</version>
181             </dependency>
182
183             <dependency>
184                 <groupId>net.glxn</groupId>
185                 <artifactId>qrgen</artifactId>
186                 <version>1.4</version>
187             </dependency>
188
189             <!-- https://mvnrepository.com/artifact/org.jdom/jdom -->
190             <dependency>
191                 <groupId>org.jdom</groupId>
192                 <artifactId>jdom</artifactId>
193                 <version>${jdom.version}</version>
194             </dependency>
195             <!-- https://mvnrepository.com/artifact/org.dom4j/dom4j -->
196             <dependency>
197                 <groupId>org.dom4j</groupId>
198                 <artifactId>dom4j</artifactId>
199                 <version>${dom4j.version}</version>
200             </dependency>
201
202             <!-- https://mvnrepository.com/artifact/org.apache.httpcomponents/httpcore -->
203             <dependency>
204                 <groupId>org.apache.httpcomponents</groupId>
205                 <artifactId>httpcore</artifactId>
206                 <version>${httpcore.version}</version>
207             </dependency>
208             <!-- https://mvnrepository.com/artifact/org.apache.httpcomponents/httpclient -->
209             <dependency>
210                 <groupId>org.apache.httpcomponents</groupId>
211                 <artifactId>httpclient</artifactId>
212                 <version>${httpclient.version}</version>
213             </dependency>
214
215
216             <dependency>
217                 <groupId>com.auth0</groupId>
218                 <artifactId>java-jwt</artifactId>
219                 <version>${java.jwt.version}</version>
220             </dependency>
221             <dependency>
222                 <groupId>io.jsonwebtoken</groupId>
223                 <artifactId>jjwt</artifactId>
224                 <version>${jjwt.version}</version>
225             </dependency>
226
227             <dependency>
228                 <groupId>org.freemarker</groupId>
229                 <artifactId>freemarker</artifactId>
230                 <version>${freemarker.version}</version>
231             </dependency>
232
233             <!-- 字符串工具类jar:StringUtils -->
234             <dependency>
235                 <groupId>org.apache.commons</groupId>
236                 <artifactId>commons-lang3</artifactId>
237                 <version>${orgApache.commons}</version>
238             </dependency>
239
240             <dependency>
241                 <groupId>commons-io</groupId>
242                 <artifactId>commons-io</artifactId>
243                 <version>${commons-io}</version>
244             </dependency>
245
246             <!-- https://mvnrepository.com/artifact/org.bouncycastle/bcprov-jdk15on -->
247             <dependency>
248                 <groupId>org.bouncycastle</groupId>
249                 <artifactId>bcprov-jdk15on</artifactId>
250                 <version>${jdk15on.version}</version>
251             </dependency>
252
253             <dependency>
254                 <groupId>redis.clients</groupId>
255                 <artifactId>jedis</artifactId>
256                 <version>${jedis.version}</version>
257             </dependency>
258
259             <dependency>
260                 <groupId>org.springframework.boot</groupId>
261                 <artifactId>spring-boot-starter-data-redis</artifactId>
262                 <version>${spring.redis.version}</version>
263             </dependency>
264
265             <dependency>
266                 <groupId>org.projectlombok</groupId>
267                 <artifactId>lombok</artifactId>
268                 <version>${lombok.version}</version>
269             </dependency>
270             <dependency>
271                 <groupId>junit</groupId>
272                 <artifactId>junit</artifactId>
273                 <version>${junit.version}</version>
274             </dependency>
275             <dependency>
276                 <groupId>javax.servlet.jsp.jstl</groupId>
277                 <artifactId>jstl-api</artifactId>
278                 <version>${jstl.api.version}</version>
279             </dependency>
280             <dependency>
281                 <groupId>com.aliyun.oss</groupId>
282                 <artifactId>aliyun-sdk-oss</artifactId>
283                 <version>${oss.version}</version>
284             </dependency>
285             <dependency>
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>
362         </dependencies>
363     </dependencyManagement>
364
365
366 </project>