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