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