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