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