ChenJiaHe
2021-04-19 6cec25dc22d1b53092947fca9a34cbef4608beb0
提交 | 用户 | 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
59         <!-- https://mvnrepository.com/artifact/org.bouncycastle/bcprov-jdk15on -->
60         <dependency>
61             <groupId>org.bouncycastle</groupId>
62             <artifactId>bcprov-jdk15on</artifactId>
63         </dependency>
64
65         <!--微信支付用到的包-->
66         <dependency>
67             <groupId>org.dom4j</groupId>
68             <artifactId>dom4j</artifactId>
69         </dependency>
70         <dependency>
71             <groupId>org.jdom</groupId>
72             <artifactId>jdom</artifactId>
73         </dependency>
74         <dependency>
75             <groupId>org.apache.httpcomponents</groupId>
76             <artifactId>httpcore</artifactId>
77         </dependency>
78         <dependency>
79             <groupId>org.apache.httpcomponents</groupId>
80             <artifactId>httpclient</artifactId>
81         </dependency>
82
83         <dependency>
84             <groupId>cglib</groupId>
85             <artifactId>cglib</artifactId>
86         </dependency>
87         <!--<dependency>
88             <groupId>log4j</groupId>
89             <artifactId>log4j</artifactId>
90         </dependency>-->
91
92         <!--生成二维码支持包-->
93         <dependency>
94             <groupId>com.google.zxing</groupId>
95             <artifactId>core</artifactId>
96         </dependency>
97         <dependency>
98             <groupId>net.glxn</groupId>
99             <artifactId>qrgen</artifactId>
100         </dependency>
101
102         <!-- 字符串工具类jar:StringUtils -->
103         <dependency>
104             <groupId>org.apache.commons</groupId>
105             <artifactId>commons-lang3</artifactId>
106         </dependency>
107         <dependency>
108             <groupId>commons-io</groupId>
109             <artifactId>commons-io</artifactId>
110         </dependency>
111         <!-- excel2003使用的jar -->
112         <dependency>
113             <groupId>org.apache.poi</groupId>
114             <artifactId>poi</artifactId>
115         </dependency>
116         <dependency>
117             <groupId>redis.clients</groupId>
118             <artifactId>jedis</artifactId>
119         </dependency>
120
121         <dependency>
122             <groupId>com.auth0</groupId>
123             <artifactId>java-jwt</artifactId>
124         </dependency>
125         <dependency>
126             <groupId>io.jsonwebtoken</groupId>
127             <artifactId>jjwt</artifactId>
128         </dependency>
129
130         <dependency>
131             <groupId>javax.servlet.jsp.jstl</groupId>
132             <artifactId>jstl-api</artifactId>
133         </dependency>
134         <dependency>
135             <groupId>javax.servlet</groupId>
136             <artifactId>jstl</artifactId>
137         </dependency>
138
139         <!-- mybatis自动生成 -->
140         <dependency>
141             <groupId>com.gitee.sunchenbin.mybatis.actable</groupId>
142             <artifactId>mybatis-enhance-actable</artifactId>
143         </dependency>
144
145         <!-- 模板生成jar -->
146         <dependency>
147             <groupId>org.freemarker</groupId>
148             <artifactId>freemarker</artifactId>
149         </dependency>
150
151         <dependency>
152             <groupId>org.springframework.boot</groupId>
153             <artifactId>spring-boot-starter-data-redis</artifactId>
154             <exclusions>
155                 <exclusion>
156                     <groupId>org.springframework.boot</groupId>
157                     <artifactId>spring-boot-starter</artifactId>
158                 </exclusion>
159                 <exclusion>
160                     <groupId>org.slf4j</groupId>
161                     <artifactId>slf4j-api</artifactId>
162                 </exclusion>
163                 <exclusion>
164                     <groupId>org.slf4j</groupId>
165                     <artifactId>jcl-over-slf4j</artifactId>
166                 </exclusion>
167             </exclusions>
168         </dependency>
169
170         <dependency>
171             <groupId>org.projectlombok</groupId>
172             <artifactId>lombok</artifactId>
173         </dependency>
174
175         <dependency>
176             <groupId>org.springframework.boot</groupId>
177             <artifactId>spring-boot-starter-web</artifactId>
178             <exclusions>
179                 <exclusion>
180                     <groupId>org.hibernate</groupId>
181                     <artifactId>hibernate-validator</artifactId>
182                 </exclusion>
183                 <exclusion>
184                     <groupId>org.springframework.boot</groupId>
185                     <artifactId>spring-boot-starter-tomcat</artifactId>
186                 </exclusion>
187                 <exclusion>
188                     <groupId>org.springframework.boot</groupId>
189                     <artifactId>spring-boot-starter-logging</artifactId>
190                 </exclusion>
191             </exclusions>
192         </dependency>
193         <dependency>
194             <groupId>org.mybatis.spring.boot</groupId>
195             <artifactId>mybatis-spring-boot-starter</artifactId><exclusions>
196             <exclusion>
197                 <groupId>org.springframework.boot</groupId>
198                 <artifactId>spring-boot-starter-logging</artifactId>
199             </exclusion>
200         </exclusions>
201
202         </dependency>
203         <dependency>
204             <groupId>mysql</groupId>
205             <artifactId>mysql-connector-java</artifactId>
206             <scope>runtime</scope>
207         </dependency>
208
209         <dependency>
210             <groupId>com.alibaba</groupId>
211             <artifactId>druid</artifactId>
212         </dependency>
213
214         <dependency>
215             <groupId>com.alibaba</groupId>
216             <artifactId>fastjson</artifactId>
217         </dependency>
218
219         <dependency>
220             <groupId>com.google.code.gson</groupId>
221             <artifactId>gson</artifactId>
222         </dependency>
223
224         <dependency>
225             <groupId>net.sf.json-lib</groupId>
226             <artifactId>json-lib</artifactId>
227             <classifier>jdk15</classifier>
228         </dependency>
229
230         <dependency>
231             <groupId>com.belerweb</groupId>
232             <artifactId>pinyin4j</artifactId>
233         </dependency>
234
235         <dependency>
236             <groupId>net.sourceforge.jexcelapi</groupId>
237             <artifactId>jxl</artifactId>
238         </dependency>
239
240         <dependency>
241             <groupId>commons-beanutils</groupId>
242             <artifactId>commons-beanutils</artifactId>
243             <exclusions>
244                 <exclusion>
245                     <artifactId>commons-logging</artifactId>
246                     <groupId>commons-logging</groupId>
247                 </exclusion>
248             </exclusions>
249         </dependency>
250         <dependency>
251             <groupId>commons-collections</groupId>
252             <artifactId>commons-collections</artifactId>
253         </dependency>
254         <dependency>
255             <groupId>commons-lang</groupId>
256             <artifactId>commons-lang</artifactId>
257         </dependency>
258         <dependency>
259             <groupId>net.sf.ezmorph</groupId>
260             <artifactId>ezmorph</artifactId>
261         </dependency>
262         <dependency>
263             <groupId>junit</groupId>
264             <artifactId>junit</artifactId>
265         </dependency>
266         <dependency>
267             <groupId>com.github.pagehelper</groupId>
268             <artifactId>pagehelper</artifactId>
269         </dependency>
46911b 270
E 271         <dependency>
272             <groupId>com.dtflys.forest</groupId>
273             <artifactId>spring-boot-starter-forest</artifactId>
274             <version>1.5.0-RC2</version>
275         </dependency>
5c5945 276     </dependencies>
E 277
278     <build>
279         <finalName>hx-demoboot</finalName>
280         <resources>
281             <resource>
282                 <directory>src/main/java</directory>
283                 <includes>
284                     <include>**/*.properties</include>
285                     <include>**/*.xml</include>
286                     <include>**/*.tld</include>
287                     <include>**/*.tpl</include>
288                 </includes>
289                 <filtering>false</filtering>
290             </resource>
291             <resource>
292                 <directory>src/main/resources</directory>
293                 <excludes>
294                     <exclude>profile-active/**</exclude>
295                 </excludes>
296             </resource>
297             <resource>
298                 <directory>${runtime.env}</directory>
299             </resource>
300         </resources>
301     </build>
302
303 </project>