fwq
2022-06-17 32e62c64b2e384d11443cb4ae90177d5664dc8d8
提交 | 用户 | age
5c5945 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     <parent>
8         <groupId>com.hx.gitee</groupId>
9         <artifactId>hx-parent</artifactId>
10         <version>1.0-SNAPSHOT</version>
11     </parent>
12
13     <artifactId>hx-common</artifactId>
14     <packaging>jar</packaging>
15
16     <dependencies>
17
38914a 18         <!--对象与XML处理-->
C 19         <dependency>
20             <groupId>javax.xml.bind</groupId>
21             <artifactId>jaxb-api</artifactId>
22         </dependency>
23
cac339 24         <dependency>
C 25             <groupId>org.apache.poi</groupId>
26             <artifactId>poi-ooxml</artifactId>
27             <version>3.9</version>
9cc914 28             <exclusions>
F 29                 <exclusion>
30                     <artifactId>dom4j</artifactId>
31                     <groupId>dom4j</groupId>
32                 </exclusion>
33             </exclusions>
cac339 34         </dependency>
38914a 35
7b319c 36         <!--腾讯云 cos-->
C 37         <dependency>
38             <groupId>com.qcloud</groupId>
39             <artifactId>cos_api</artifactId>
40         </dependency>
41
5c5945 42         <!--发送邮件-->
E 43         <dependency>
44             <groupId>com.sun.mail</groupId>
45             <artifactId>javax.mail</artifactId>
46         </dependency>
47
48         <dependency>
b2fdfd 49             <groupId>org.apache.commons</groupId>
E 50             <artifactId>commons-csv</artifactId>
51             <version>1.6</version>
52         </dependency>
53
54         <dependency>
5c5945 55             <groupId>com.aliyun.oss</groupId>
E 56             <artifactId>aliyun-sdk-oss</artifactId>
57         </dependency>
58
8d87cf 59         <dependency>
C 60             <groupId>com.huaweicloud</groupId>
61             <artifactId>esdk-obs-java</artifactId>
62         </dependency>
63
5c5945 64         <!-- https://mvnrepository.com/artifact/org.bouncycastle/bcprov-jdk15on -->
E 65         <dependency>
66             <groupId>org.bouncycastle</groupId>
67             <artifactId>bcprov-jdk15on</artifactId>
68         </dependency>
69
70         <!--微信支付用到的包-->
71         <dependency>
72             <groupId>org.dom4j</groupId>
73             <artifactId>dom4j</artifactId>
74         </dependency>
75         <dependency>
76             <groupId>org.jdom</groupId>
77             <artifactId>jdom</artifactId>
78         </dependency>
79         <dependency>
80             <groupId>org.apache.httpcomponents</groupId>
81             <artifactId>httpcore</artifactId>
82         </dependency>
83         <dependency>
84             <groupId>org.apache.httpcomponents</groupId>
85             <artifactId>httpclient</artifactId>
86         </dependency>
87
88         <dependency>
89             <groupId>cglib</groupId>
90             <artifactId>cglib</artifactId>
91         </dependency>
92         <!--<dependency>
93             <groupId>log4j</groupId>
94             <artifactId>log4j</artifactId>
95         </dependency>-->
96
97         <!--生成二维码支持包-->
98         <dependency>
99             <groupId>com.google.zxing</groupId>
100             <artifactId>core</artifactId>
101         </dependency>
102         <dependency>
103             <groupId>net.glxn</groupId>
104             <artifactId>qrgen</artifactId>
105         </dependency>
106
107         <!-- 字符串工具类jar:StringUtils -->
108         <dependency>
109             <groupId>org.apache.commons</groupId>
110             <artifactId>commons-lang3</artifactId>
111         </dependency>
112         <dependency>
113             <groupId>commons-io</groupId>
114             <artifactId>commons-io</artifactId>
115         </dependency>
116         <!-- excel2003使用的jar -->
117         <dependency>
118             <groupId>org.apache.poi</groupId>
119             <artifactId>poi</artifactId>
120         </dependency>
121         <dependency>
122             <groupId>redis.clients</groupId>
123             <artifactId>jedis</artifactId>
124         </dependency>
125
126         <dependency>
127             <groupId>com.auth0</groupId>
128             <artifactId>java-jwt</artifactId>
129         </dependency>
130         <dependency>
131             <groupId>io.jsonwebtoken</groupId>
132             <artifactId>jjwt</artifactId>
133         </dependency>
134
135         <dependency>
136             <groupId>javax.servlet.jsp.jstl</groupId>
137             <artifactId>jstl-api</artifactId>
138         </dependency>
139         <dependency>
140             <groupId>javax.servlet</groupId>
141             <artifactId>jstl</artifactId>
142         </dependency>
143
2ed119 144         <dependency>
C 145             <groupId>org.springframework.boot</groupId>
146             <artifactId>spring-boot-starter-tomcat</artifactId>
147             <!--<scope>provided</scope>-->
148         </dependency>
149
5c5945 150         <!-- mybatis自动生成 -->
E 151         <dependency>
152             <groupId>com.gitee.sunchenbin.mybatis.actable</groupId>
153             <artifactId>mybatis-enhance-actable</artifactId>
154         </dependency>
155
156         <!-- 模板生成jar -->
157         <dependency>
158             <groupId>org.freemarker</groupId>
159             <artifactId>freemarker</artifactId>
160         </dependency>
161
162         <dependency>
163             <groupId>org.springframework.boot</groupId>
164             <artifactId>spring-boot-starter-data-redis</artifactId>
165             <exclusions>
166                 <exclusion>
167                     <groupId>org.springframework.boot</groupId>
168                     <artifactId>spring-boot-starter</artifactId>
169                 </exclusion>
170                 <exclusion>
171                     <groupId>org.slf4j</groupId>
172                     <artifactId>slf4j-api</artifactId>
173                 </exclusion>
174                 <exclusion>
175                     <groupId>org.slf4j</groupId>
176                     <artifactId>jcl-over-slf4j</artifactId>
177                 </exclusion>
178             </exclusions>
179         </dependency>
180
181         <dependency>
182             <groupId>org.projectlombok</groupId>
183             <artifactId>lombok</artifactId>
184         </dependency>
185
186         <dependency>
187             <groupId>org.springframework.boot</groupId>
188             <artifactId>spring-boot-starter-web</artifactId>
189             <exclusions>
190                 <exclusion>
191                     <groupId>org.hibernate</groupId>
192                     <artifactId>hibernate-validator</artifactId>
193                 </exclusion>
194                 <exclusion>
195                     <groupId>org.springframework.boot</groupId>
196                     <artifactId>spring-boot-starter-tomcat</artifactId>
197                 </exclusion>
198                 <exclusion>
199                     <groupId>org.springframework.boot</groupId>
200                     <artifactId>spring-boot-starter-logging</artifactId>
201                 </exclusion>
202             </exclusions>
203         </dependency>
204         <dependency>
205             <groupId>org.mybatis.spring.boot</groupId>
206             <artifactId>mybatis-spring-boot-starter</artifactId><exclusions>
207             <exclusion>
208                 <groupId>org.springframework.boot</groupId>
209                 <artifactId>spring-boot-starter-logging</artifactId>
210             </exclusion>
211         </exclusions>
212
213         </dependency>
214         <dependency>
215             <groupId>mysql</groupId>
216             <artifactId>mysql-connector-java</artifactId>
217             <scope>runtime</scope>
218         </dependency>
219
220         <dependency>
221             <groupId>com.alibaba</groupId>
222             <artifactId>druid</artifactId>
223         </dependency>
224
225         <dependency>
226             <groupId>com.alibaba</groupId>
227             <artifactId>fastjson</artifactId>
228         </dependency>
229
230         <dependency>
231             <groupId>com.google.code.gson</groupId>
232             <artifactId>gson</artifactId>
233         </dependency>
234
235         <dependency>
236             <groupId>net.sf.json-lib</groupId>
237             <artifactId>json-lib</artifactId>
238             <classifier>jdk15</classifier>
239         </dependency>
240
241         <dependency>
242             <groupId>com.belerweb</groupId>
243             <artifactId>pinyin4j</artifactId>
244         </dependency>
245
246         <dependency>
247             <groupId>net.sourceforge.jexcelapi</groupId>
248             <artifactId>jxl</artifactId>
249         </dependency>
250
251         <dependency>
252             <groupId>commons-beanutils</groupId>
253             <artifactId>commons-beanutils</artifactId>
254             <exclusions>
255                 <exclusion>
256                     <artifactId>commons-logging</artifactId>
257                     <groupId>commons-logging</groupId>
258                 </exclusion>
259             </exclusions>
260         </dependency>
261         <dependency>
262             <groupId>commons-collections</groupId>
263             <artifactId>commons-collections</artifactId>
264         </dependency>
265         <dependency>
266             <groupId>commons-lang</groupId>
267             <artifactId>commons-lang</artifactId>
268         </dependency>
269         <dependency>
270             <groupId>net.sf.ezmorph</groupId>
271             <artifactId>ezmorph</artifactId>
272         </dependency>
273         <dependency>
274             <groupId>junit</groupId>
275             <artifactId>junit</artifactId>
276         </dependency>
277         <dependency>
278             <groupId>com.github.pagehelper</groupId>
279             <artifactId>pagehelper</artifactId>
280         </dependency>
46911b 281
E 282         <dependency>
283             <groupId>com.dtflys.forest</groupId>
284             <artifactId>spring-boot-starter-forest</artifactId>
285             <version>1.5.0-RC2</version>
286         </dependency>
f3ad4b 287
C 288         <!-- redis -->
289         <dependency>
290             <groupId>org.springframework.boot</groupId>
291             <artifactId>spring-boot-starter-data-redis</artifactId>
292         </dependency>
5c5945 293     </dependencies>
E 294
295     <build>
2169ae 296         <finalName>hx-common</finalName>
5c5945 297         <resources>
E 298             <resource>
299                 <directory>src/main/java</directory>
300                 <includes>
301                     <include>**/*.properties</include>
302                     <include>**/*.xml</include>
303                     <include>**/*.tld</include>
304                     <include>**/*.tpl</include>
305                 </includes>
306                 <filtering>false</filtering>
307             </resource>
308             <resource>
309                 <directory>src/main/resources</directory>
310                 <excludes>
311                     <exclude>profile-active/**</exclude>
312                 </excludes>
313             </resource>
314             <resource>
315                 <directory>${runtime.env}</directory>
316             </resource>
317         </resources>
318     </build>
319
320 </project>