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