chenjiahe
8 天以前 45579f96ef266fa9000dd22dbefa5825c6f500b1
提交 | 用户 | 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
2e06d1 24       <!--  <dependency>
cac339 25             <groupId>org.apache.poi</groupId>
C 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>
2e06d1 34         </dependency>-->
38914a 35
7b319c 36         <!--腾讯云 cos-->
C 37         <dependency>
38             <groupId>com.qcloud</groupId>
39             <artifactId>cos_api</artifactId>
40         </dependency>
41
3432ff 42         <dependency>
C 43             <groupId>commons-fileupload</groupId>
44             <artifactId>commons-fileupload</artifactId>
45         </dependency>
46
5c5945 47         <!--发送邮件-->
E 48         <dependency>
49             <groupId>com.sun.mail</groupId>
50             <artifactId>javax.mail</artifactId>
51         </dependency>
52
53         <dependency>
b2fdfd 54             <groupId>org.apache.commons</groupId>
E 55             <artifactId>commons-csv</artifactId>
56             <version>1.6</version>
57         </dependency>
58
59         <dependency>
5c5945 60             <groupId>com.aliyun.oss</groupId>
E 61             <artifactId>aliyun-sdk-oss</artifactId>
62         </dependency>
63
8d87cf 64         <dependency>
C 65             <groupId>com.huaweicloud</groupId>
66             <artifactId>esdk-obs-java</artifactId>
67         </dependency>
68
5c5945 69         <!-- https://mvnrepository.com/artifact/org.bouncycastle/bcprov-jdk15on -->
E 70         <dependency>
71             <groupId>org.bouncycastle</groupId>
72             <artifactId>bcprov-jdk15on</artifactId>
73         </dependency>
74
75         <!--微信支付用到的包-->
76         <dependency>
77             <groupId>org.dom4j</groupId>
78             <artifactId>dom4j</artifactId>
79         </dependency>
80         <dependency>
81             <groupId>org.jdom</groupId>
82             <artifactId>jdom</artifactId>
83         </dependency>
84         <dependency>
85             <groupId>org.apache.httpcomponents</groupId>
86             <artifactId>httpcore</artifactId>
87         </dependency>
88         <dependency>
89             <groupId>org.apache.httpcomponents</groupId>
90             <artifactId>httpclient</artifactId>
91         </dependency>
92
93         <dependency>
94             <groupId>cglib</groupId>
95             <artifactId>cglib</artifactId>
96         </dependency>
97         <!--<dependency>
98             <groupId>log4j</groupId>
99             <artifactId>log4j</artifactId>
100         </dependency>-->
101
102         <!--生成二维码支持包-->
103         <dependency>
104             <groupId>com.google.zxing</groupId>
105             <artifactId>core</artifactId>
106         </dependency>
107         <dependency>
108             <groupId>net.glxn</groupId>
109             <artifactId>qrgen</artifactId>
110         </dependency>
111
112         <!-- 字符串工具类jar:StringUtils -->
113         <dependency>
114             <groupId>org.apache.commons</groupId>
115             <artifactId>commons-lang3</artifactId>
116         </dependency>
117         <dependency>
118             <groupId>commons-io</groupId>
119             <artifactId>commons-io</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>
2e06d1 293
C 294         <!-- https://mvnrepository.com/artifact/com.monitorjbl/xlsx-streamer -->
295         <dependency>
296             <groupId>com.monitorjbl</groupId>
297             <artifactId>xlsx-streamer</artifactId>
298         </dependency>
299
5c5945 300     </dependencies>
E 301
302     <build>
2169ae 303         <finalName>hx-common</finalName>
5c5945 304         <resources>
E 305             <resource>
306                 <directory>src/main/java</directory>
307                 <includes>
308                     <include>**/*.properties</include>
309                     <include>**/*.xml</include>
310                     <include>**/*.tld</include>
311                     <include>**/*.tpl</include>
312                 </includes>
313                 <filtering>false</filtering>
314             </resource>
315             <resource>
316                 <directory>src/main/resources</directory>
317                 <excludes>
318                     <exclude>profile-active/**</exclude>
319                 </excludes>
320             </resource>
321             <resource>
322                 <directory>${runtime.env}</directory>
323             </resource>
324         </resources>
325     </build>
326
327 </project>