Commit 1a66f04db4ceec738bb0564dd9a648e91ca3a1ea
1 parent
913ff1c5
修改优化模块
Showing
6 changed files
with
403 additions
and
447 deletions
.classpath deleted
.project deleted
1 | -<?xml version="1.0" encoding="UTF-8"?> | ||
2 | -<projectDescription> | ||
3 | - <name>ylp-common-parent</name> | ||
4 | - <comment></comment> | ||
5 | - <projects> | ||
6 | - </projects> | ||
7 | - <buildSpec> | ||
8 | - <buildCommand> | ||
9 | - <name>org.eclipse.jdt.core.javabuilder</name> | ||
10 | - <arguments> | ||
11 | - </arguments> | ||
12 | - </buildCommand> | ||
13 | - <buildCommand> | ||
14 | - <name>org.eclipse.m2e.core.maven2Builder</name> | ||
15 | - <arguments> | ||
16 | - </arguments> | ||
17 | - </buildCommand> | ||
18 | - </buildSpec> | ||
19 | - <natures> | ||
20 | - <nature>org.eclipse.jdt.core.javanature</nature> | ||
21 | - <nature>org.eclipse.m2e.core.maven2Nature</nature> | ||
22 | - </natures> | ||
23 | -</projectDescription> |
.settings/org.eclipse.core.resources.prefs deleted
.settings/org.eclipse.jdt.core.prefs deleted
.settings/org.eclipse.m2e.core.prefs deleted
pom.xml
@@ -4,7 +4,7 @@ | @@ -4,7 +4,7 @@ | ||
4 | 4 | ||
5 | <groupId>com.ylp.common</groupId> | 5 | <groupId>com.ylp.common</groupId> |
6 | <artifactId>ylp-common-parent</artifactId> | 6 | <artifactId>ylp-common-parent</artifactId> |
7 | - <version>1.0-Release</version> | 7 | + <version>2.0.0-Release</version> |
8 | <packaging>pom</packaging> | 8 | <packaging>pom</packaging> |
9 | 9 | ||
10 | <name>ylp-common-parent</name> | 10 | <name>ylp-common-parent</name> |
@@ -44,7 +44,7 @@ | @@ -44,7 +44,7 @@ | ||
44 | <properties> | 44 | <properties> |
45 | <!-- 部署环境(对应配置文件版本) --> | 45 | <!-- 部署环境(对应配置文件版本) --> |
46 | <env>qa</env> | 46 | <env>qa</env> |
47 | - <ver>1.0-Release</ver> | 47 | + <ver>2.0.0-Release</ver> |
48 | </properties> | 48 | </properties> |
49 | </profile> | 49 | </profile> |
50 | 50 | ||
@@ -54,7 +54,7 @@ | @@ -54,7 +54,7 @@ | ||
54 | <properties> | 54 | <properties> |
55 | <!-- 部署环境(对应配置文件版本) --> | 55 | <!-- 部署环境(对应配置文件版本) --> |
56 | <env>prod</env> | 56 | <env>prod</env> |
57 | - <ver>1.0-Release</ver> | 57 | + <ver>2.0.0-Release</ver> |
58 | </properties> | 58 | </properties> |
59 | </profile> | 59 | </profile> |
60 | 60 | ||
@@ -98,10 +98,6 @@ | @@ -98,10 +98,6 @@ | ||
98 | 98 | ||
99 | <properties> | 99 | <properties> |
100 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> | 100 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
101 | - | ||
102 | - <!-- frameworks --> | ||
103 | - <org.springframework.version>3.2.4.RELEASE</org.springframework.version> | ||
104 | - | ||
105 | </properties> | 101 | </properties> |
106 | 102 | ||
107 | <dependencies> | 103 | <dependencies> |
@@ -114,406 +110,406 @@ | @@ -114,406 +110,406 @@ | ||
114 | <!-- Test Dependency End --> | 110 | <!-- Test Dependency End --> |
115 | </dependencies> | 111 | </dependencies> |
116 | 112 | ||
117 | - <dependencyManagement> | ||
118 | - <dependencies> | ||
119 | - <!-- Common Dependency Begin --> | ||
120 | - <dependency> | ||
121 | - <groupId>xalan</groupId> | ||
122 | - <artifactId>xalan</artifactId> | ||
123 | - <version>2.7.1</version> | ||
124 | - </dependency> | ||
125 | - <dependency> | ||
126 | - <groupId>antlr</groupId> | ||
127 | - <artifactId>antlr</artifactId> | ||
128 | - <version>2.7.6</version> | ||
129 | - </dependency> | ||
130 | - <dependency> | ||
131 | - <groupId>aopalliance</groupId> | ||
132 | - <artifactId>aopalliance</artifactId> | ||
133 | - <version>1.0</version> | ||
134 | - </dependency> | ||
135 | - <dependency> | ||
136 | - <groupId>org.aspectj</groupId> | ||
137 | - <artifactId>aspectjweaver</artifactId> | ||
138 | - <version>1.7.3</version> | ||
139 | - </dependency> | ||
140 | - <dependency> | ||
141 | - <groupId>cglib</groupId> | ||
142 | - <artifactId>cglib</artifactId> | ||
143 | - <version>2.2.2</version> | ||
144 | - </dependency> | ||
145 | - <dependency> | ||
146 | - <groupId>asm</groupId> | ||
147 | - <artifactId>asm</artifactId> | ||
148 | - <version>3.3.1</version> | ||
149 | - </dependency> | ||
150 | - <dependency> | ||
151 | - <groupId>net.sf.json-lib</groupId> | ||
152 | - <artifactId>json-lib</artifactId> | ||
153 | - <version>2.3</version> | ||
154 | - <classifier>jdk15</classifier> | ||
155 | - <scope>compile</scope> | ||
156 | - </dependency> | ||
157 | - <dependency> | ||
158 | - <groupId>org.codehaus.jackson</groupId> | ||
159 | - <artifactId>jackson-core-asl</artifactId> | ||
160 | - <version>1.9.13</version> | ||
161 | - </dependency> | ||
162 | - <dependency> | ||
163 | - <groupId>org.codehaus.jackson</groupId> | ||
164 | - <artifactId>jackson-mapper-asl</artifactId> | ||
165 | - <version>1.9.13</version> | ||
166 | - </dependency> | ||
167 | - <dependency> | ||
168 | - <groupId>ognl</groupId> | ||
169 | - <artifactId>ognl</artifactId> | ||
170 | - <version>3.0.6</version> | ||
171 | - </dependency> | ||
172 | - <dependency> | ||
173 | - <groupId>oro</groupId> | ||
174 | - <artifactId>oro</artifactId> | ||
175 | - <version>2.0.8</version> | ||
176 | - </dependency> | ||
177 | - <dependency> | ||
178 | - <groupId>commons-net</groupId> | ||
179 | - <artifactId>commons-net</artifactId> | ||
180 | - <version>3.2</version> | ||
181 | - </dependency> | ||
182 | - <dependency> | ||
183 | - <groupId>commons-beanutils</groupId> | ||
184 | - <artifactId>commons-beanutils</artifactId> | ||
185 | - <version>1.8.0</version> | ||
186 | - </dependency> | ||
187 | - <dependency> | ||
188 | - <groupId>commons-codec</groupId> | ||
189 | - <artifactId>commons-codec</artifactId> | ||
190 | - <version>1.8</version> | ||
191 | - </dependency> | ||
192 | - <dependency> | ||
193 | - <groupId>commons-collections</groupId> | ||
194 | - <artifactId>commons-collections</artifactId> | ||
195 | - <version>3.2</version> | ||
196 | - </dependency> | ||
197 | - <dependency> | ||
198 | - <groupId>commons-digester</groupId> | ||
199 | - <artifactId>commons-digester</artifactId> | ||
200 | - <version>2.0</version> | ||
201 | - </dependency> | ||
202 | - <dependency> | ||
203 | - <groupId>commons-fileupload</groupId> | ||
204 | - <artifactId>commons-fileupload</artifactId> | ||
205 | - <version>1.3.1</version> | ||
206 | - </dependency> | ||
207 | - <dependency> | ||
208 | - <groupId>commons-io</groupId> | ||
209 | - <artifactId>commons-io</artifactId> | ||
210 | - <version>2.4</version> | ||
211 | - </dependency> | ||
212 | - <dependency> | ||
213 | - <groupId>commons-lang</groupId> | ||
214 | - <artifactId>commons-lang</artifactId> | ||
215 | - <version>2.5</version> | ||
216 | - </dependency> | ||
217 | - <dependency> | ||
218 | - <groupId>org.apache.commons</groupId> | ||
219 | - <artifactId>commons-lang3</artifactId> | ||
220 | - <version>3.1</version> | ||
221 | - </dependency> | ||
222 | - <dependency> | ||
223 | - <groupId>commons-logging</groupId> | ||
224 | - <artifactId>commons-logging</artifactId> | ||
225 | - <version>1.1.3</version> | ||
226 | - </dependency> | ||
227 | - <dependency> | ||
228 | - <groupId>commons-validator</groupId> | ||
229 | - <artifactId>commons-validator</artifactId> | ||
230 | - <version>1.1.4</version> | ||
231 | - </dependency> | ||
232 | - <dependency> | ||
233 | - <groupId>commons-cli</groupId> | ||
234 | - <artifactId>commons-cli</artifactId> | ||
235 | - <version>1.2</version> | ||
236 | - </dependency> | ||
237 | - <dependency> | ||
238 | - <groupId>dom4j</groupId> | ||
239 | - <artifactId>dom4j</artifactId> | ||
240 | - <version>1.6.1</version> | ||
241 | - </dependency> | ||
242 | - <dependency> | ||
243 | - <groupId>net.sf.ezmorph</groupId> | ||
244 | - <artifactId>ezmorph</artifactId> | ||
245 | - <version>1.0.6</version> | ||
246 | - </dependency> | ||
247 | - <dependency> | ||
248 | - <groupId>javassist</groupId> | ||
249 | - <artifactId>javassist</artifactId> | ||
250 | - <version>3.12.1.GA</version> | ||
251 | - </dependency> | ||
252 | - <dependency> | ||
253 | - <groupId>jstl</groupId> | ||
254 | - <artifactId>jstl</artifactId> | ||
255 | - <version>1.2</version> | ||
256 | - </dependency> | ||
257 | - <dependency> | ||
258 | - <groupId>javax.transaction</groupId> | ||
259 | - <artifactId>jta</artifactId> | ||
260 | - <version>1.1</version> | ||
261 | - </dependency> | ||
262 | - <dependency> | ||
263 | - <groupId>log4j</groupId> | ||
264 | - <artifactId>log4j</artifactId> | ||
265 | - <version>1.2.17</version> | ||
266 | - </dependency> | ||
267 | - <dependency> | ||
268 | - <groupId>org.slf4j</groupId> | ||
269 | - <artifactId>slf4j-api</artifactId> | ||
270 | - <version>1.7.5</version> | ||
271 | - </dependency> | ||
272 | - <dependency> | ||
273 | - <groupId>org.slf4j</groupId> | ||
274 | - <artifactId>slf4j-log4j12</artifactId> | ||
275 | - <version>1.7.5</version> | ||
276 | - </dependency> | ||
277 | - <dependency> | ||
278 | - <groupId>net.sourceforge.jexcelapi</groupId> | ||
279 | - <artifactId>jxl</artifactId> | ||
280 | - <version>2.6.12</version> | ||
281 | - </dependency> | ||
282 | - <!-- <dependency> <groupId>com.alibaba.external</groupId> <artifactId>sourceforge.spring</artifactId> | ||
283 | - <version>2.0.1</version> </dependency> <dependency> <groupId>com.alibaba.external</groupId> | ||
284 | - <artifactId>jakarta.commons.poolg</artifactId> <version>1.3</version> </dependency> --> | ||
285 | - <dependency> | ||
286 | - <groupId>org.jdom</groupId> | ||
287 | - <artifactId>jdom</artifactId> | ||
288 | - <version>1.1.3</version> | ||
289 | - </dependency> | ||
290 | - <dependency> | ||
291 | - <groupId>jaxen</groupId> | ||
292 | - <artifactId>jaxen</artifactId> | ||
293 | - <version>1.1.1</version> | ||
294 | - </dependency> | ||
295 | - <dependency> | ||
296 | - <groupId>com.alibaba</groupId> | ||
297 | - <artifactId>dubbo</artifactId> | ||
298 | - <version>2.5.3</version> | ||
299 | - </dependency> | ||
300 | - <dependency> | ||
301 | - <groupId>redis.clients</groupId> | ||
302 | - <artifactId>jedis</artifactId> | ||
303 | - <version>2.8.1</version> | ||
304 | - </dependency> | ||
305 | - | ||
306 | - <!-- Common Dependency End --> | ||
307 | - | ||
308 | - <!-- Zookeeper 用于分布式服务管理 --> | ||
309 | - <dependency> | ||
310 | - <groupId>org.apache.zookeeper</groupId> | ||
311 | - <artifactId>zookeeper</artifactId> | ||
312 | - <version>3.4.5</version> | ||
313 | - </dependency> | ||
314 | - <dependency> | ||
315 | - <groupId>com.101tec</groupId> | ||
316 | - <artifactId>zkclient</artifactId> | ||
317 | - <version>0.3</version> | ||
318 | - </dependency> | ||
319 | - <!-- Zookeeper 用于分布式服务管理 end --> | ||
320 | - | ||
321 | - | ||
322 | - <!-- Spring Dependency Begin --> | ||
323 | - <dependency> | ||
324 | - <groupId>org.springframework</groupId> | ||
325 | - <artifactId>spring-aop</artifactId> | ||
326 | - <version>${org.springframework.version}</version> | ||
327 | - </dependency> | ||
328 | - <dependency> | ||
329 | - <groupId>org.springframework</groupId> | ||
330 | - <artifactId>spring-aspects</artifactId> | ||
331 | - <version>${org.springframework.version}</version> | ||
332 | - </dependency> | ||
333 | - <dependency> | ||
334 | - <groupId>org.springframework</groupId> | ||
335 | - <artifactId>spring-beans</artifactId> | ||
336 | - <version>${org.springframework.version}</version> | ||
337 | - </dependency> | ||
338 | - <dependency> | ||
339 | - <groupId>org.springframework</groupId> | ||
340 | - <artifactId>spring-context</artifactId> | ||
341 | - <version>${org.springframework.version}</version> | ||
342 | - </dependency> | ||
343 | - <dependency> | ||
344 | - <groupId>org.springframework</groupId> | ||
345 | - <artifactId>spring-context-support</artifactId> | ||
346 | - <version>${org.springframework.version}</version> | ||
347 | - </dependency> | ||
348 | - <dependency> | ||
349 | - <groupId>org.springframework</groupId> | ||
350 | - <artifactId>spring-core</artifactId> | ||
351 | - <version>${org.springframework.version}</version> | ||
352 | - </dependency> | ||
353 | - <dependency> | ||
354 | - <groupId>org.springframework</groupId> | ||
355 | - <artifactId>spring-expression</artifactId> | ||
356 | - <version>${org.springframework.version}</version> | ||
357 | - </dependency> | ||
358 | - <dependency> | ||
359 | - <groupId>org.springframework</groupId> | ||
360 | - <artifactId>spring-instrument</artifactId> | ||
361 | - <version>${org.springframework.version}</version> | ||
362 | - </dependency> | ||
363 | - <dependency> | ||
364 | - <groupId>org.springframework</groupId> | ||
365 | - <artifactId>spring-instrument-tomcat</artifactId> | ||
366 | - <version>${org.springframework.version}</version> | ||
367 | - </dependency> | ||
368 | - <dependency> | ||
369 | - <groupId>org.springframework</groupId> | ||
370 | - <artifactId>spring-jdbc</artifactId> | ||
371 | - <version>${org.springframework.version}</version> | ||
372 | - </dependency> | ||
373 | - <dependency> | ||
374 | - <groupId>org.springframework</groupId> | ||
375 | - <artifactId>spring-jms</artifactId> | ||
376 | - <version>${org.springframework.version}</version> | ||
377 | - </dependency> | ||
378 | - <dependency> | ||
379 | - <groupId>org.springframework</groupId> | ||
380 | - <artifactId>spring-orm</artifactId> | ||
381 | - <version>${org.springframework.version}</version> | ||
382 | - </dependency> | ||
383 | - <dependency> | ||
384 | - <groupId>org.springframework</groupId> | ||
385 | - <artifactId>spring-oxm</artifactId> | ||
386 | - <version>${org.springframework.version}</version> | ||
387 | - </dependency> | ||
388 | - <dependency> | ||
389 | - <groupId>org.springframework</groupId> | ||
390 | - <artifactId>spring-struts</artifactId> | ||
391 | - <version>${org.springframework.version}</version> | ||
392 | - </dependency> | ||
393 | - <dependency> | ||
394 | - <groupId>org.springframework</groupId> | ||
395 | - <artifactId>spring-test</artifactId> | ||
396 | - <version>${org.springframework.version}</version> | ||
397 | - <scope>test</scope> | ||
398 | - </dependency> | ||
399 | - <dependency> | ||
400 | - <groupId>org.springframework</groupId> | ||
401 | - <artifactId>spring-tx</artifactId> | ||
402 | - <version>${org.springframework.version}</version> | ||
403 | - </dependency> | ||
404 | - <dependency> | ||
405 | - <groupId>org.springframework</groupId> | ||
406 | - <artifactId>spring-web</artifactId> | ||
407 | - <version>${org.springframework.version}</version> | ||
408 | - </dependency> | ||
409 | - <dependency> | ||
410 | - <groupId>org.springframework</groupId> | ||
411 | - <artifactId>spring-webmvc</artifactId> | ||
412 | - <version>${org.springframework.version}</version> | ||
413 | - </dependency> | ||
414 | - <dependency> | ||
415 | - <groupId>org.springframework</groupId> | ||
416 | - <artifactId>spring-webmvc-portlet</artifactId> | ||
417 | - <version>${org.springframework.version}</version> | ||
418 | - </dependency> | ||
419 | - <!-- Spring Dependency End --> | ||
420 | - | ||
421 | - <!-- MyBatis Dependency Begin --> | ||
422 | - <dependency> | ||
423 | - <groupId>org.mybatis</groupId> | ||
424 | - <artifactId>mybatis</artifactId> | ||
425 | - <version>3.2.8</version> | ||
426 | - </dependency> | ||
427 | - <dependency> | ||
428 | - <groupId>org.mybatis</groupId> | ||
429 | - <artifactId>mybatis-spring</artifactId> | ||
430 | - <version>1.2.2</version> | ||
431 | - </dependency> | ||
432 | - <!-- MyBatis Dependency End --> | ||
433 | - | ||
434 | - <!-- Mysql Driver Begin --> | ||
435 | - <dependency> | ||
436 | - <groupId>mysql</groupId> | ||
437 | - <artifactId>mysql-connector-java</artifactId> | ||
438 | - <version>5.1.32</version> | ||
439 | - </dependency> | ||
440 | - <!-- Mysql Driver End --> | ||
441 | - | ||
442 | - <!-- Others Begin --> | ||
443 | - <dependency> | ||
444 | - <groupId>com.google.code</groupId> | ||
445 | - <artifactId>kaptcha</artifactId> | ||
446 | - <version>2.3.2</version> | ||
447 | - </dependency> | ||
448 | - <dependency> | ||
449 | - <groupId>org.apache.tomcat</groupId> | ||
450 | - <artifactId>servlet-api</artifactId> | ||
451 | - <version>6.0.37</version> | ||
452 | - </dependency> | ||
453 | - <dependency> | ||
454 | - <groupId>org.apache.tomcat</groupId> | ||
455 | - <artifactId>jsp-api</artifactId> | ||
456 | - <version>6.0.37</version> | ||
457 | - </dependency> | ||
458 | - <dependency> | ||
459 | - <groupId>org.freemarker</groupId> | ||
460 | - <artifactId>freemarker</artifactId> | ||
461 | - <version>2.3.19</version> | ||
462 | - </dependency> | ||
463 | - <dependency> | ||
464 | - <groupId>com.alibaba</groupId> | ||
465 | - <artifactId>druid</artifactId> | ||
466 | - <version>1.0.12</version> | ||
467 | - </dependency> | ||
468 | - <dependency> | ||
469 | - <groupId>com.alibaba</groupId> | ||
470 | - <artifactId>fastjson</artifactId> | ||
471 | - <version>1.1.41</version> | ||
472 | - </dependency> | ||
473 | - <dependency> | ||
474 | - <groupId>org.apache.httpcomponents</groupId> | ||
475 | - <artifactId>httpclient</artifactId> | ||
476 | - <version>4.5.2</version> | ||
477 | - </dependency> | ||
478 | - <dependency> | ||
479 | - <groupId>org.jboss.netty</groupId> | ||
480 | - <artifactId>netty</artifactId> | ||
481 | - <version>3.2.5.Final</version> | ||
482 | - </dependency> | ||
483 | - <dependency> | ||
484 | - <groupId>org.apache.activemq</groupId> | ||
485 | - <artifactId>activemq-all</artifactId> | ||
486 | - <version>5.8.0</version> | ||
487 | - </dependency> | ||
488 | - <dependency> | ||
489 | - <groupId>org.apache.activemq</groupId> | ||
490 | - <artifactId>activemq-pool</artifactId> | ||
491 | - <version>5.8.0</version> | ||
492 | - </dependency> | ||
493 | - <!-- Others End --> | ||
494 | - | ||
495 | - | ||
496 | - <dependency> | ||
497 | - <groupId>org.jsoup</groupId> | ||
498 | - <artifactId>jsoup</artifactId> | ||
499 | - <version>1.7.3</version> | ||
500 | - </dependency> | ||
501 | - | ||
502 | - <!-- dozer bean copy --> | ||
503 | - <dependency> | ||
504 | - <groupId>net.sf.dozer</groupId> | ||
505 | - <artifactId>dozer</artifactId> | ||
506 | - <version>${dozer.version}</version> | ||
507 | - <exclusions> | ||
508 | - <exclusion> | ||
509 | - <groupId>org.slf4j</groupId> | ||
510 | - <artifactId>slf4j-log4j12</artifactId> | ||
511 | - </exclusion> | ||
512 | - </exclusions> | ||
513 | - </dependency> | ||
514 | - | ||
515 | - </dependencies> | ||
516 | - </dependencyManagement> | 113 | + <!--<dependencyManagement>--> |
114 | + <!--<dependencies>--> | ||
115 | + <!--<!– Common Dependency Begin –>--> | ||
116 | + <!--<dependency>--> | ||
117 | + <!--<groupId>xalan</groupId>--> | ||
118 | + <!--<artifactId>xalan</artifactId>--> | ||
119 | + <!--<version>2.7.1</version>--> | ||
120 | + <!--</dependency>--> | ||
121 | + <!--<dependency>--> | ||
122 | + <!--<groupId>antlr</groupId>--> | ||
123 | + <!--<artifactId>antlr</artifactId>--> | ||
124 | + <!--<version>2.7.6</version>--> | ||
125 | + <!--</dependency>--> | ||
126 | + <!--<dependency>--> | ||
127 | + <!--<groupId>aopalliance</groupId>--> | ||
128 | + <!--<artifactId>aopalliance</artifactId>--> | ||
129 | + <!--<version>1.0</version>--> | ||
130 | + <!--</dependency>--> | ||
131 | + <!--<dependency>--> | ||
132 | + <!--<groupId>org.aspectj</groupId>--> | ||
133 | + <!--<artifactId>aspectjweaver</artifactId>--> | ||
134 | + <!--<version>1.7.3</version>--> | ||
135 | + <!--</dependency>--> | ||
136 | + <!--<dependency>--> | ||
137 | + <!--<groupId>cglib</groupId>--> | ||
138 | + <!--<artifactId>cglib</artifactId>--> | ||
139 | + <!--<version>2.2.2</version>--> | ||
140 | + <!--</dependency>--> | ||
141 | + <!--<dependency>--> | ||
142 | + <!--<groupId>asm</groupId>--> | ||
143 | + <!--<artifactId>asm</artifactId>--> | ||
144 | + <!--<version>3.3.1</version>--> | ||
145 | + <!--</dependency>--> | ||
146 | + <!--<dependency>--> | ||
147 | + <!--<groupId>net.sf.json-lib</groupId>--> | ||
148 | + <!--<artifactId>json-lib</artifactId>--> | ||
149 | + <!--<version>2.3</version>--> | ||
150 | + <!--<classifier>jdk15</classifier>--> | ||
151 | + <!--<scope>compile</scope>--> | ||
152 | + <!--</dependency>--> | ||
153 | + <!--<dependency>--> | ||
154 | + <!--<groupId>org.codehaus.jackson</groupId>--> | ||
155 | + <!--<artifactId>jackson-core-asl</artifactId>--> | ||
156 | + <!--<version>1.9.13</version>--> | ||
157 | + <!--</dependency>--> | ||
158 | + <!--<dependency>--> | ||
159 | + <!--<groupId>org.codehaus.jackson</groupId>--> | ||
160 | + <!--<artifactId>jackson-mapper-asl</artifactId>--> | ||
161 | + <!--<version>1.9.13</version>--> | ||
162 | + <!--</dependency>--> | ||
163 | + <!--<dependency>--> | ||
164 | + <!--<groupId>ognl</groupId>--> | ||
165 | + <!--<artifactId>ognl</artifactId>--> | ||
166 | + <!--<version>3.0.6</version>--> | ||
167 | + <!--</dependency>--> | ||
168 | + <!--<dependency>--> | ||
169 | + <!--<groupId>oro</groupId>--> | ||
170 | + <!--<artifactId>oro</artifactId>--> | ||
171 | + <!--<version>2.0.8</version>--> | ||
172 | + <!--</dependency>--> | ||
173 | + <!--<dependency>--> | ||
174 | + <!--<groupId>commons-net</groupId>--> | ||
175 | + <!--<artifactId>commons-net</artifactId>--> | ||
176 | + <!--<version>3.2</version>--> | ||
177 | + <!--</dependency>--> | ||
178 | + <!--<dependency>--> | ||
179 | + <!--<groupId>commons-beanutils</groupId>--> | ||
180 | + <!--<artifactId>commons-beanutils</artifactId>--> | ||
181 | + <!--<version>1.8.0</version>--> | ||
182 | + <!--</dependency>--> | ||
183 | + <!--<dependency>--> | ||
184 | + <!--<groupId>commons-codec</groupId>--> | ||
185 | + <!--<artifactId>commons-codec</artifactId>--> | ||
186 | + <!--<version>1.8</version>--> | ||
187 | + <!--</dependency>--> | ||
188 | + <!--<dependency>--> | ||
189 | + <!--<groupId>commons-collections</groupId>--> | ||
190 | + <!--<artifactId>commons-collections</artifactId>--> | ||
191 | + <!--<version>3.2</version>--> | ||
192 | + <!--</dependency>--> | ||
193 | + <!--<dependency>--> | ||
194 | + <!--<groupId>commons-digester</groupId>--> | ||
195 | + <!--<artifactId>commons-digester</artifactId>--> | ||
196 | + <!--<version>2.0</version>--> | ||
197 | + <!--</dependency>--> | ||
198 | + <!--<dependency>--> | ||
199 | + <!--<groupId>commons-fileupload</groupId>--> | ||
200 | + <!--<artifactId>commons-fileupload</artifactId>--> | ||
201 | + <!--<version>1.3.1</version>--> | ||
202 | + <!--</dependency>--> | ||
203 | + <!--<dependency>--> | ||
204 | + <!--<groupId>commons-io</groupId>--> | ||
205 | + <!--<artifactId>commons-io</artifactId>--> | ||
206 | + <!--<version>2.4</version>--> | ||
207 | + <!--</dependency>--> | ||
208 | + <!--<dependency>--> | ||
209 | + <!--<groupId>commons-lang</groupId>--> | ||
210 | + <!--<artifactId>commons-lang</artifactId>--> | ||
211 | + <!--<version>2.5</version>--> | ||
212 | + <!--</dependency>--> | ||
213 | + <!--<dependency>--> | ||
214 | + <!--<groupId>org.apache.commons</groupId>--> | ||
215 | + <!--<artifactId>commons-lang3</artifactId>--> | ||
216 | + <!--<version>3.1</version>--> | ||
217 | + <!--</dependency>--> | ||
218 | + <!--<dependency>--> | ||
219 | + <!--<groupId>commons-logging</groupId>--> | ||
220 | + <!--<artifactId>commons-logging</artifactId>--> | ||
221 | + <!--<version>1.1.3</version>--> | ||
222 | + <!--</dependency>--> | ||
223 | + <!--<dependency>--> | ||
224 | + <!--<groupId>commons-validator</groupId>--> | ||
225 | + <!--<artifactId>commons-validator</artifactId>--> | ||
226 | + <!--<version>1.1.4</version>--> | ||
227 | + <!--</dependency>--> | ||
228 | + <!--<dependency>--> | ||
229 | + <!--<groupId>commons-cli</groupId>--> | ||
230 | + <!--<artifactId>commons-cli</artifactId>--> | ||
231 | + <!--<version>1.2</version>--> | ||
232 | + <!--</dependency>--> | ||
233 | + <!--<dependency>--> | ||
234 | + <!--<groupId>dom4j</groupId>--> | ||
235 | + <!--<artifactId>dom4j</artifactId>--> | ||
236 | + <!--<version>1.6.1</version>--> | ||
237 | + <!--</dependency>--> | ||
238 | + <!--<dependency>--> | ||
239 | + <!--<groupId>net.sf.ezmorph</groupId>--> | ||
240 | + <!--<artifactId>ezmorph</artifactId>--> | ||
241 | + <!--<version>1.0.6</version>--> | ||
242 | + <!--</dependency>--> | ||
243 | + <!--<dependency>--> | ||
244 | + <!--<groupId>javassist</groupId>--> | ||
245 | + <!--<artifactId>javassist</artifactId>--> | ||
246 | + <!--<version>3.12.1.GA</version>--> | ||
247 | + <!--</dependency>--> | ||
248 | + <!--<dependency>--> | ||
249 | + <!--<groupId>jstl</groupId>--> | ||
250 | + <!--<artifactId>jstl</artifactId>--> | ||
251 | + <!--<version>1.2</version>--> | ||
252 | + <!--</dependency>--> | ||
253 | + <!--<dependency>--> | ||
254 | + <!--<groupId>javax.transaction</groupId>--> | ||
255 | + <!--<artifactId>jta</artifactId>--> | ||
256 | + <!--<version>1.1</version>--> | ||
257 | + <!--</dependency>--> | ||
258 | + <!--<dependency>--> | ||
259 | + <!--<groupId>log4j</groupId>--> | ||
260 | + <!--<artifactId>log4j</artifactId>--> | ||
261 | + <!--<version>1.2.17</version>--> | ||
262 | + <!--</dependency>--> | ||
263 | + <!--<dependency>--> | ||
264 | + <!--<groupId>org.slf4j</groupId>--> | ||
265 | + <!--<artifactId>slf4j-api</artifactId>--> | ||
266 | + <!--<version>1.7.5</version>--> | ||
267 | + <!--</dependency>--> | ||
268 | + <!--<dependency>--> | ||
269 | + <!--<groupId>org.slf4j</groupId>--> | ||
270 | + <!--<artifactId>slf4j-log4j12</artifactId>--> | ||
271 | + <!--<version>1.7.5</version>--> | ||
272 | + <!--</dependency>--> | ||
273 | + <!--<dependency>--> | ||
274 | + <!--<groupId>net.sourceforge.jexcelapi</groupId>--> | ||
275 | + <!--<artifactId>jxl</artifactId>--> | ||
276 | + <!--<version>2.6.12</version>--> | ||
277 | + <!--</dependency>--> | ||
278 | + <!--<!– <dependency> <groupId>com.alibaba.external</groupId> <artifactId>sourceforge.spring</artifactId> --> | ||
279 | + <!--<version>2.0.1</version> </dependency> <dependency> <groupId>com.alibaba.external</groupId> --> | ||
280 | + <!--<artifactId>jakarta.commons.poolg</artifactId> <version>1.3</version> </dependency> –>--> | ||
281 | + <!--<dependency>--> | ||
282 | + <!--<groupId>org.jdom</groupId>--> | ||
283 | + <!--<artifactId>jdom</artifactId>--> | ||
284 | + <!--<version>1.1.3</version>--> | ||
285 | + <!--</dependency>--> | ||
286 | + <!--<dependency>--> | ||
287 | + <!--<groupId>jaxen</groupId>--> | ||
288 | + <!--<artifactId>jaxen</artifactId>--> | ||
289 | + <!--<version>1.1.1</version>--> | ||
290 | + <!--</dependency>--> | ||
291 | + <!--<dependency>--> | ||
292 | + <!--<groupId>com.alibaba</groupId>--> | ||
293 | + <!--<artifactId>dubbo</artifactId>--> | ||
294 | + <!--<version>2.5.3</version>--> | ||
295 | + <!--</dependency>--> | ||
296 | + <!--<dependency>--> | ||
297 | + <!--<groupId>redis.clients</groupId>--> | ||
298 | + <!--<artifactId>jedis</artifactId>--> | ||
299 | + <!--<version>2.8.1</version>--> | ||
300 | + <!--</dependency>--> | ||
301 | + | ||
302 | + <!--<!– Common Dependency End –>--> | ||
303 | + | ||
304 | + <!--<!– Zookeeper 用于分布式服务管理 –>--> | ||
305 | + <!--<dependency>--> | ||
306 | + <!--<groupId>org.apache.zookeeper</groupId>--> | ||
307 | + <!--<artifactId>zookeeper</artifactId>--> | ||
308 | + <!--<version>3.4.5</version>--> | ||
309 | + <!--</dependency>--> | ||
310 | + <!--<dependency>--> | ||
311 | + <!--<groupId>com.101tec</groupId>--> | ||
312 | + <!--<artifactId>zkclient</artifactId>--> | ||
313 | + <!--<version>0.3</version>--> | ||
314 | + <!--</dependency>--> | ||
315 | + <!--<!– Zookeeper 用于分布式服务管理 end –>--> | ||
316 | + | ||
317 | + | ||
318 | + <!--<!– Spring Dependency Begin –>--> | ||
319 | + <!--<dependency>--> | ||
320 | + <!--<groupId>org.springframework</groupId>--> | ||
321 | + <!--<artifactId>spring-aop</artifactId>--> | ||
322 | + <!--<version>${org.springframework.version}</version>--> | ||
323 | + <!--</dependency>--> | ||
324 | + <!--<dependency>--> | ||
325 | + <!--<groupId>org.springframework</groupId>--> | ||
326 | + <!--<artifactId>spring-aspects</artifactId>--> | ||
327 | + <!--<version>${org.springframework.version}</version>--> | ||
328 | + <!--</dependency>--> | ||
329 | + <!--<dependency>--> | ||
330 | + <!--<groupId>org.springframework</groupId>--> | ||
331 | + <!--<artifactId>spring-beans</artifactId>--> | ||
332 | + <!--<version>${org.springframework.version}</version>--> | ||
333 | + <!--</dependency>--> | ||
334 | + <!--<dependency>--> | ||
335 | + <!--<groupId>org.springframework</groupId>--> | ||
336 | + <!--<artifactId>spring-context</artifactId>--> | ||
337 | + <!--<version>${org.springframework.version}</version>--> | ||
338 | + <!--</dependency>--> | ||
339 | + <!--<dependency>--> | ||
340 | + <!--<groupId>org.springframework</groupId>--> | ||
341 | + <!--<artifactId>spring-context-support</artifactId>--> | ||
342 | + <!--<version>${org.springframework.version}</version>--> | ||
343 | + <!--</dependency>--> | ||
344 | + <!--<dependency>--> | ||
345 | + <!--<groupId>org.springframework</groupId>--> | ||
346 | + <!--<artifactId>spring-core</artifactId>--> | ||
347 | + <!--<version>${org.springframework.version}</version>--> | ||
348 | + <!--</dependency>--> | ||
349 | + <!--<dependency>--> | ||
350 | + <!--<groupId>org.springframework</groupId>--> | ||
351 | + <!--<artifactId>spring-expression</artifactId>--> | ||
352 | + <!--<version>${org.springframework.version}</version>--> | ||
353 | + <!--</dependency>--> | ||
354 | + <!--<dependency>--> | ||
355 | + <!--<groupId>org.springframework</groupId>--> | ||
356 | + <!--<artifactId>spring-instrument</artifactId>--> | ||
357 | + <!--<version>${org.springframework.version}</version>--> | ||
358 | + <!--</dependency>--> | ||
359 | + <!--<dependency>--> | ||
360 | + <!--<groupId>org.springframework</groupId>--> | ||
361 | + <!--<artifactId>spring-instrument-tomcat</artifactId>--> | ||
362 | + <!--<version>${org.springframework.version}</version>--> | ||
363 | + <!--</dependency>--> | ||
364 | + <!--<dependency>--> | ||
365 | + <!--<groupId>org.springframework</groupId>--> | ||
366 | + <!--<artifactId>spring-jdbc</artifactId>--> | ||
367 | + <!--<version>${org.springframework.version}</version>--> | ||
368 | + <!--</dependency>--> | ||
369 | + <!--<dependency>--> | ||
370 | + <!--<groupId>org.springframework</groupId>--> | ||
371 | + <!--<artifactId>spring-jms</artifactId>--> | ||
372 | + <!--<version>${org.springframework.version}</version>--> | ||
373 | + <!--</dependency>--> | ||
374 | + <!--<dependency>--> | ||
375 | + <!--<groupId>org.springframework</groupId>--> | ||
376 | + <!--<artifactId>spring-orm</artifactId>--> | ||
377 | + <!--<version>${org.springframework.version}</version>--> | ||
378 | + <!--</dependency>--> | ||
379 | + <!--<dependency>--> | ||
380 | + <!--<groupId>org.springframework</groupId>--> | ||
381 | + <!--<artifactId>spring-oxm</artifactId>--> | ||
382 | + <!--<version>${org.springframework.version}</version>--> | ||
383 | + <!--</dependency>--> | ||
384 | + <!--<dependency>--> | ||
385 | + <!--<groupId>org.springframework</groupId>--> | ||
386 | + <!--<artifactId>spring-struts</artifactId>--> | ||
387 | + <!--<version>${org.springframework.version}</version>--> | ||
388 | + <!--</dependency>--> | ||
389 | + <!--<dependency>--> | ||
390 | + <!--<groupId>org.springframework</groupId>--> | ||
391 | + <!--<artifactId>spring-test</artifactId>--> | ||
392 | + <!--<version>${org.springframework.version}</version>--> | ||
393 | + <!--<scope>test</scope>--> | ||
394 | + <!--</dependency>--> | ||
395 | + <!--<dependency>--> | ||
396 | + <!--<groupId>org.springframework</groupId>--> | ||
397 | + <!--<artifactId>spring-tx</artifactId>--> | ||
398 | + <!--<version>${org.springframework.version}</version>--> | ||
399 | + <!--</dependency>--> | ||
400 | + <!--<dependency>--> | ||
401 | + <!--<groupId>org.springframework</groupId>--> | ||
402 | + <!--<artifactId>spring-web</artifactId>--> | ||
403 | + <!--<version>${org.springframework.version}</version>--> | ||
404 | + <!--</dependency>--> | ||
405 | + <!--<dependency>--> | ||
406 | + <!--<groupId>org.springframework</groupId>--> | ||
407 | + <!--<artifactId>spring-webmvc</artifactId>--> | ||
408 | + <!--<version>${org.springframework.version}</version>--> | ||
409 | + <!--</dependency>--> | ||
410 | + <!--<dependency>--> | ||
411 | + <!--<groupId>org.springframework</groupId>--> | ||
412 | + <!--<artifactId>spring-webmvc-portlet</artifactId>--> | ||
413 | + <!--<version>${org.springframework.version}</version>--> | ||
414 | + <!--</dependency>--> | ||
415 | + <!--<!– Spring Dependency End –>--> | ||
416 | + | ||
417 | + <!--<!– MyBatis Dependency Begin –>--> | ||
418 | + <!--<dependency>--> | ||
419 | + <!--<groupId>org.mybatis</groupId>--> | ||
420 | + <!--<artifactId>mybatis</artifactId>--> | ||
421 | + <!--<version>3.2.8</version>--> | ||
422 | + <!--</dependency>--> | ||
423 | + <!--<dependency>--> | ||
424 | + <!--<groupId>org.mybatis</groupId>--> | ||
425 | + <!--<artifactId>mybatis-spring</artifactId>--> | ||
426 | + <!--<version>1.2.2</version>--> | ||
427 | + <!--</dependency>--> | ||
428 | + <!--<!– MyBatis Dependency End –>--> | ||
429 | + | ||
430 | + <!--<!– Mysql Driver Begin –>--> | ||
431 | + <!--<dependency>--> | ||
432 | + <!--<groupId>mysql</groupId>--> | ||
433 | + <!--<artifactId>mysql-connector-java</artifactId>--> | ||
434 | + <!--<version>5.1.32</version>--> | ||
435 | + <!--</dependency>--> | ||
436 | + <!--<!– Mysql Driver End –>--> | ||
437 | + | ||
438 | + <!--<!– Others Begin –>--> | ||
439 | + <!--<dependency>--> | ||
440 | + <!--<groupId>com.google.code</groupId>--> | ||
441 | + <!--<artifactId>kaptcha</artifactId>--> | ||
442 | + <!--<version>2.3.2</version>--> | ||
443 | + <!--</dependency>--> | ||
444 | + <!--<dependency>--> | ||
445 | + <!--<groupId>org.apache.tomcat</groupId>--> | ||
446 | + <!--<artifactId>servlet-api</artifactId>--> | ||
447 | + <!--<version>6.0.37</version>--> | ||
448 | + <!--</dependency>--> | ||
449 | + <!--<dependency>--> | ||
450 | + <!--<groupId>org.apache.tomcat</groupId>--> | ||
451 | + <!--<artifactId>jsp-api</artifactId>--> | ||
452 | + <!--<version>6.0.37</version>--> | ||
453 | + <!--</dependency>--> | ||
454 | + <!--<dependency>--> | ||
455 | + <!--<groupId>org.freemarker</groupId>--> | ||
456 | + <!--<artifactId>freemarker</artifactId>--> | ||
457 | + <!--<version>2.3.19</version>--> | ||
458 | + <!--</dependency>--> | ||
459 | + <!--<dependency>--> | ||
460 | + <!--<groupId>com.alibaba</groupId>--> | ||
461 | + <!--<artifactId>druid</artifactId>--> | ||
462 | + <!--<version>1.0.12</version>--> | ||
463 | + <!--</dependency>--> | ||
464 | + <!--<dependency>--> | ||
465 | + <!--<groupId>com.alibaba</groupId>--> | ||
466 | + <!--<artifactId>fastjson</artifactId>--> | ||
467 | + <!--<version>1.1.41</version>--> | ||
468 | + <!--</dependency>--> | ||
469 | + <!--<dependency>--> | ||
470 | + <!--<groupId>org.apache.httpcomponents</groupId>--> | ||
471 | + <!--<artifactId>httpclient</artifactId>--> | ||
472 | + <!--<version>4.5.2</version>--> | ||
473 | + <!--</dependency>--> | ||
474 | + <!--<dependency>--> | ||
475 | + <!--<groupId>org.jboss.netty</groupId>--> | ||
476 | + <!--<artifactId>netty</artifactId>--> | ||
477 | + <!--<version>3.2.5.Final</version>--> | ||
478 | + <!--</dependency>--> | ||
479 | + <!--<dependency>--> | ||
480 | + <!--<groupId>org.apache.activemq</groupId>--> | ||
481 | + <!--<artifactId>activemq-all</artifactId>--> | ||
482 | + <!--<version>5.8.0</version>--> | ||
483 | + <!--</dependency>--> | ||
484 | + <!--<dependency>--> | ||
485 | + <!--<groupId>org.apache.activemq</groupId>--> | ||
486 | + <!--<artifactId>activemq-pool</artifactId>--> | ||
487 | + <!--<version>5.8.0</version>--> | ||
488 | + <!--</dependency>--> | ||
489 | + <!--<!– Others End –>--> | ||
490 | + | ||
491 | + | ||
492 | + <!--<dependency>--> | ||
493 | + <!--<groupId>org.jsoup</groupId>--> | ||
494 | + <!--<artifactId>jsoup</artifactId>--> | ||
495 | + <!--<version>1.7.3</version>--> | ||
496 | + <!--</dependency>--> | ||
497 | + | ||
498 | + <!--<!– dozer bean copy –>--> | ||
499 | + <!--<dependency>--> | ||
500 | + <!--<groupId>net.sf.dozer</groupId>--> | ||
501 | + <!--<artifactId>dozer</artifactId>--> | ||
502 | + <!--<version>${dozer.version}</version>--> | ||
503 | + <!--<exclusions>--> | ||
504 | + <!--<exclusion>--> | ||
505 | + <!--<groupId>org.slf4j</groupId>--> | ||
506 | + <!--<artifactId>slf4j-log4j12</artifactId>--> | ||
507 | + <!--</exclusion>--> | ||
508 | + <!--</exclusions>--> | ||
509 | + <!--</dependency>--> | ||
510 | + | ||
511 | + <!--</dependencies>--> | ||
512 | + <!--</dependencyManagement>--> | ||
517 | 513 | ||
518 | <build> | 514 | <build> |
519 | <plugins> | 515 | <plugins> |