fwq
2022-06-01 a99c1c5221e1e00979dd42b96a4fd2046b9dec98
提交 | 用户 | 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
144         <!-- mybatis自动生成 -->
145         <dependency>
146             <groupId>com.gitee.sunchenbin.mybatis.actable</groupId>
147             <artifactId>mybatis-enhance-actable</artifactId>
148         </dependency>
149
150         <!-- 模板生成jar -->
151         <dependency>
152             <groupId>org.freemarker</groupId>
153             <artifactId>freemarker</artifactId>
154         </dependency>
155
156         <dependency>
157             <groupId>org.springframework.boot</groupId>
158             <artifactId>spring-boot-starter-data-redis</artifactId>
159             <exclusions>
160                 <exclusion>
161                     <groupId>org.springframework.boot</groupId>
162                     <artifactId>spring-boot-starter</artifactId>
163                 </exclusion>
164                 <exclusion>
165                     <groupId>org.slf4j</groupId>
166                     <artifactId>slf4j-api</artifactId>
167                 </exclusion>
168                 <exclusion>
169                     <groupId>org.slf4j</groupId>
170                     <artifactId>jcl-over-slf4j</artifactId>
171                 </exclusion>
172             </exclusions>
173         </dependency>
174
175         <dependency>
176             <groupId>org.projectlombok</groupId>
177             <artifactId>lombok</artifactId>
178         </dependency>
179
180         <dependency>
181             <groupId>org.springframework.boot</groupId>
182             <artifactId>spring-boot-starter-web</artifactId>
183             <exclusions>
184                 <exclusion>
185                     <groupId>org.hibernate</groupId>
186                     <artifactId>hibernate-validator</artifactId>
187                 </exclusion>
188                 <exclusion>
189                     <groupId>org.springframework.boot</groupId>
190                     <artifactId>spring-boot-starter-tomcat</artifactId>
191                 </exclusion>
192                 <exclusion>
193                     <groupId>org.springframework.boot</groupId>
194                     <artifactId>spring-boot-starter-logging</artifactId>
195                 </exclusion>
196             </exclusions>
197         </dependency>
198         <dependency>
199             <groupId>org.mybatis.spring.boot</groupId>
200             <artifactId>mybatis-spring-boot-starter</artifactId><exclusions>
201             <exclusion>
202                 <groupId>org.springframework.boot</groupId>
203                 <artifactId>spring-boot-starter-logging</artifactId>
204             </exclusion>
205         </exclusions>
206
207         </dependency>
208         <dependency>
209             <groupId>mysql</groupId>
210             <artifactId>mysql-connector-java</artifactId>
211             <scope>runtime</scope>
212         </dependency>
213
214         <dependency>
215             <groupId>com.alibaba</groupId>
216             <artifactId>druid</artifactId>
217         </dependency>
218
219         <dependency>
220             <groupId>com.alibaba</groupId>
221             <artifactId>fastjson</artifactId>
222         </dependency>
223
224         <dependency>
225             <groupId>com.google.code.gson</groupId>
226             <artifactId>gson</artifactId>
227         </dependency>
228
229         <dependency>
230             <groupId>net.sf.json-lib</groupId>
231             <artifactId>json-lib</artifactId>
232             <classifier>jdk15</classifier>
233         </dependency>
234
235         <dependency>
236             <groupId>com.belerweb</groupId>
237             <artifactId>pinyin4j</artifactId>
238         </dependency>
239
240         <dependency>
241             <groupId>net.sourceforge.jexcelapi</groupId>
242             <artifactId>jxl</artifactId>
243         </dependency>
244
245         <dependency>
246             <groupId>commons-beanutils</groupId>
247             <artifactId>commons-beanutils</artifactId>
248             <exclusions>
249                 <exclusion>
250                     <artifactId>commons-logging</artifactId>
251                     <groupId>commons-logging</groupId>
252                 </exclusion>
253             </exclusions>
254         </dependency>
255         <dependency>
256             <groupId>commons-collections</groupId>
257             <artifactId>commons-collections</artifactId>
258         </dependency>
259         <dependency>
260             <groupId>commons-lang</groupId>
261             <artifactId>commons-lang</artifactId>
262         </dependency>
263         <dependency>
264             <groupId>net.sf.ezmorph</groupId>
265             <artifactId>ezmorph</artifactId>
266         </dependency>
267         <dependency>
268             <groupId>junit</groupId>
269             <artifactId>junit</artifactId>
270         </dependency>
271         <dependency>
272             <groupId>com.github.pagehelper</groupId>
273             <artifactId>pagehelper</artifactId>
274         </dependency>
46911b 275
E 276         <dependency>
277             <groupId>com.dtflys.forest</groupId>
278             <artifactId>spring-boot-starter-forest</artifactId>
279             <version>1.5.0-RC2</version>
280         </dependency>
f3ad4b 281
C 282         <!-- redis -->
283         <dependency>
284             <groupId>org.springframework.boot</groupId>
285             <artifactId>spring-boot-starter-data-redis</artifactId>
286         </dependency>
5c5945 287     </dependencies>
E 288
289     <build>
2169ae 290         <finalName>hx-common</finalName>
5c5945 291         <resources>
E 292             <resource>
293                 <directory>src/main/java</directory>
294                 <includes>
295                     <include>**/*.properties</include>
296                     <include>**/*.xml</include>
297                     <include>**/*.tld</include>
298                     <include>**/*.tpl</include>
299                 </includes>
300                 <filtering>false</filtering>
301             </resource>
302             <resource>
303                 <directory>src/main/resources</directory>
304                 <excludes>
305                     <exclude>profile-active/**</exclude>
306                 </excludes>
307             </resource>
308             <resource>
309                 <directory>${runtime.env}</directory>
310             </resource>
311         </resources>
312     </build>
313
314 </project>