This repository has been archived by the owner on Jul 22, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 58
/
Copy pathpom.xml
1669 lines (1435 loc) · 56 KB
/
pom.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>com.feilong.platform</groupId>
<artifactId>parent</artifactId>
<version>2.1.0</version>
<packaging>pom</packaging>
<name>feilong-platform</name>
<!-- 成立年份 -->
<inceptionYear>2008</inceptionYear>
<description>Reduce development, Release ideas</description>
<url>http://venusdrogon.github.io/feilong-platform/</url>
<!-- 软件配置管理SCM (Software Configuration Management), 如cvs ,svn ,git -->
<scm>
<url>https://github.com/venusdrogon/feilong-platform</url>
<connection>scm:git:https://github.com/venusdrogon/feilong-platform</connection>
<developerConnection>scm:git:[email protected]:venusdrogon/feilong-platform.git</developerConnection>
</scm>
<!--****************************定义属性 properties************************************* -->
<properties>
<!-- 不要使用${project.version}, 因为如果真实项目生成的版本不是1.7.0的时候,比如是 0.0.1版本,那么就引用不到feilong包 -->
<version.feilong-platform>2.1.0</version.feilong-platform>
<version.feilong-common-test>3.0.0</version.feilong-common-test>
<!-- 让整个项目统一字符集编码 -->
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<!-- javadoc 和site 的生成目录 -->
<folder.gh-pages>/Users/feilong/workspace/feilong/else/feilong-platform-gh-pages</folder.gh-pages>
<!-- **********************begin maven-compiler-plugin config******************************************* -->
<maven-compiler-plugin.source>1.7</maven-compiler-plugin.source>
<maven-compiler-plugin.target>1.7</maven-compiler-plugin.target>
<maven-compiler-plugin.encoding>${project.build.sourceEncoding}</maven-compiler-plugin.encoding>
<!-- **********************end maven-compiler-plugin config******************************************* -->
<!--****************************第三方************************************ -->
<!--*********************begin dependency plugins version************************************ -->
<!-- http://commons.apache.org/proper/commons-beanutils/changes-report.html -->
<version.commons-beanutils>1.9.4</version.commons-beanutils>
<!-- http://commons.apache.org/proper/commons-codec/changes-report.html#a1.12 -->
<version.commons-codec>1.12</version.commons-codec>
<version.commons-collections>3.2.2</version.commons-collections>
<!-- http://commons.apache.org/proper/commons-collections/index.html -->
<!-- 4.3 需要 jdk1.8 -->
<version.commons-collections4>4.2</version.commons-collections4>
<version.commons-configuration>1.10</version.commons-configuration>
<!-- http://commons.apache.org/proper/commons-configuration/index.html -->
<!-- http://commons.apache.org/proper/commons-configuration/changes-report.html#a2.4 -->
<version.commons-configuration2>2.3</version.commons-configuration2>
<!--
The Apache Commons Compress library defines an API for working with ar, cpio, Unix dump, tar, zip, gzip, XZ, Pack200, bzip2, 7z, arj, lzma, snappy, DEFLATE,
lz4, Brotli, Zstandard, DEFLATE64 and Z files.
The code in this component has many origins:
The bzip2, tar and zip support came from Avalon's Excalibur, but originally from Ant, as far as life in Apache goes.
The tar package is originally Tim Endres' public domain package.
The bzip2 package is based on the work done by Keiron Liddle as well as Julian Seward's libbzip2.
It has migrated via:
Ant -> Avalon-Excalibur -> Commons-IO -> Commons-Compress.
The cpio package has been contributed by Michael Kuss and the jRPM project.
-->
<!-- http://commons.apache.org/proper/commons-compress/ -->
<version.commons-compress>1.19</version.commons-compress>
<version.commons-digester>2.1</version.commons-digester>
<!--http://commons.apache.org/proper/commons-fileupload/changes-report.html#a1.4 -->
<version.commons-fileupload>1.4</version.commons-fileupload>
<!-- The Commons HttpClient project is now end of life, and is no longer being developed. It has been replaced by the Apache HttpComponents project in its HttpClient
and HttpCore modules, which offer better performance and more flexibility. -->
<!-- HttpClient was started in 2001 as a subproject of the Jakarta Commons, based on code developed by the Jakarta Slide project. It was promoted out of the Commons
in 2004, graduating to a separate Jakarta project. In 2005, the HttpComponents project at Jakarta was created, with the task of developing a successor to HttpClient
3.x and to maintain the existing codebase until the new one is ready to take over. The Commons project, cradle of HttpClient, left Jakarta in 2007 to become an
independent
Top Level Project. Later in the same year, the HttpComponents project also left Jakarta to become an independent Top Level Project, taking the responsibility
for
maintaining HttpClient with it. -->
<version.commons-httpclient>3.1</version.commons-httpclient>
<!-- http://hc.apache.org/downloads.cgi -->
<version.httpcomponents>4.5.8</version.httpcomponents>
<!-- base on jdk1.2 legacy(won't update) -->
<version.commons-lang>2.6</version.commons-lang>
<!-- http://commons.apache.org/proper/commons-lang/ -->
<!-- https://github.com/apache/commons-lang/blob/master/RELEASE-NOTES.txt -->
<!--
Commons Lang 3.6 at least requires Java 7.0.
Note that this has changed from Commons Lang 3.5, which only required Java 1.6
-->
<version.commons-lang3>3.8.1</version.commons-lang3>
<!-- http://commons.apache.org/proper/commons-logging/download_logging.cgi -->
<!-- commons-logging 仅仅 统一下版本 feilong platform 不直接使用这个jar -->
<version.commons-logging>1.2</version.commons-logging>
<!-- see in http://commons.apache.org/proper/commons-io/index.html -->
<!--
Commons IO 2.6 (requires JDK 1.7+)
Commons IO 2.5 (requires JDK 1.6+)
-->
<version.commons-io>2.6</version.commons-io>
<!-- see in http://commons.apache.org/proper/commons-net/index.html -->
<version.commons-net>3.6</version.commons-net>
<version.commons-validator>1.6</version.commons-validator>
<!-- net.sf.json-lib -->
<version.json-lib>2.4</version.json-lib>
<!-- http://www.jcraft.com/jsch/ -->
<!-- http://www.jcraft.com/jsch/ChangeLog -->
<version.jsch>0.1.55</version.jsch>
<!-- https://jsoup.org/news/ -->
<version.jsoup>1.11.3</version.jsoup>
<version.javamail>1.4.7</version.javamail>
<version.servlet-api>3.0.1</version.servlet-api>
<version.jsp-api>2.2</version.jsp-api>
<version.el-api>2.2</version.el-api>
<version.jstl>1.2</version.jstl>
<!-- https://junit.org/junit4/ -->
<version.junit>4.13</version.junit>
<version.hamcrest-library>1.3</version.hamcrest-library>
<!-- http://logging.apache.org/log4j/1.2/download.html -->
<version.log4j>1.2.17</version.log4j>
<!-- https://logback.qos.ch/news.html -->
<version.logback>1.2.3</version.logback>
<!-- http://www.slf4j.org/news.html -->
<version.slf4j>1.7.30</version.slf4j>
<version.spring>3.2.18.RELEASE</version.spring>
<!-- http://x-stream.github.io/ -->
<!-- https://github.com/x-stream/xstream/releases -->
<!-- #133: XStream 1.4.11 fails to run on a Java Runtime < 8. -->
<version.xstream>1.4.11.1</version.xstream>
<version.xml-apis>1.4.01</version.xml-apis>
<!-- https://xerces.apache.org/xerces2-j/releases.html -->
<version.xercesImpl>2.12.0</version.xercesImpl>
<!--
http://tiles.apache.org/framework/whats-new.html
Removals in Tiles 3.0
Upgraded from JavaSE 5.0 to JavaSE 6.0.
Upgraded from Servlet 2.4 and JSP 2.0 to Servlet 2.5 and JSP 2.1.
Changed the Java API to adopt the Request API. The XML files and taglibs are compatible with tiles 2.2.
Dropped the parameter based configuration that was deprecated in 2.2.
-->
<version.tiles>3.0.8</version.tiles>
<!--*********************end dependency plugins version************************************ -->
<!--*********************begin plugins version************************************ -->
<v.maven-antrun-plugin>1.8</v.maven-antrun-plugin>
<!-- http://maven.apache.org/components/plugins/maven-assembly-plugin/ -->
<v.maven-assembly-plugin>3.2.0</v.maven-assembly-plugin>
<v.maven-clean-plugin>3.1.0</v.maven-clean-plugin>
<!-- http://maven.apache.org/plugins/maven-compiler-plugin/download.cgi -->
<!-- https://issues.apache.org/jira/projects/MCOMPILER?selectedItem=com.atlassian.jira.jira-projects-plugin:release-page&status=all -->
<v.maven-compiler-plugin>3.8.1</v.maven-compiler-plugin>
<v.maven-changes-plugin>2.12.1</v.maven-changes-plugin>
<!-- CheckStyle能够帮助Java开发人员准守某些编码规范的工具。它能够自动检查代码。 -->
<v.maven-checkstyle-plugin>2.17</v.maven-checkstyle-plugin>
<!-- http://maven.apache.org/plugins/maven-dependency-plugin/index.html -->
<v.maven-dependency-plugin>3.1.2</v.maven-dependency-plugin>
<v.maven-deploy-plugin>2.8.2</v.maven-deploy-plugin>
<v.maven-install-plugin>2.5.2</v.maven-install-plugin>
<!-- https://issues.apache.org/jira/projects/MJAVADOC?selectedItem=com.atlassian.jira.jira-projects-plugin:release-page&status=all -->
<v.maven-javadoc-plugin>3.2.0</v.maven-javadoc-plugin>
<!-- https://issues.apache.org/jira/projects/MJAR?selectedItem=com.atlassian.jira.jira-projects-plugin:release-page&status=all -->
<v.maven-jar-plugin>3.2.0</v.maven-jar-plugin>
<v.maven-jxr-plugin>2.5</v.maven-jxr-plugin>
<v.maven-pmd-plugin>3.8</v.maven-pmd-plugin>
<!-- 用来做maven 插件的 -->
<!-- http://maven.apache.org/plugin-tools/maven-plugin-plugin/project-info.html -->
<v.maven-plugin-plugin>3.6.0</v.maven-plugin-plugin>
<!-- https://maven.apache.org/scm/ -->
<!-- SCM Software Configuration Management 软件配置管理 where each SCM command is implemented as a plugin goal -->
<!-- 目前主要用于 scm-checkin-all.sh 一键push脚本 -->
<v.maven-scm-plugin>1.11.2</v.maven-scm-plugin>
<!-- http://maven.apache.org/plugins/maven-site-plugin/ -->
<!-- https://issues.apache.org/jira/projects/MSITE?selectedItem=com.atlassian.jira.jira-projects-plugin:release-page&status=released-unreleased -->
<v.maven-site-plugin>3.9.0</v.maven-site-plugin>
<!-- http://maven.apache.org/plugins/maven-source-plugin/download.cgi -->
<!-- https://issues.apache.org/jira/projects/MSOURCES?selectedItem=com.atlassian.jira.jira-projects-plugin:release-page&status=released-unreleased -->
<v.maven-source-plugin>3.2.1</v.maven-source-plugin>
<!--http://maven.apache.org/surefire/maven-surefire-plugin/ -->
<!--https://issues.apache.org/jira/projects/SUREFIRE?selectedItem=com.atlassian.jira.jira-projects-plugin:release-page&status=released-unreleased -->
<v.maven-surefire-plugin>2.22.2</v.maven-surefire-plugin>
<v.maven-release-plugin>2.5.3</v.maven-release-plugin>
<!-- https://issues.apache.org/jira/browse/MRESOURCES/?selectedTab=com.atlassian.jira.jira-projects-plugin:changelog-panel -->
<v.maven-resources-plugin>3.1.0</v.maven-resources-plugin>
<!-- http://maven.apache.org/plugins/maven-war-plugin/index.html -->
<!-- https://issues.apache.org/jira/projects/MWAR?selectedItem=com.atlassian.jira.jira-projects-plugin:release-page&status=all -->
<v.maven-war-plugin>3.2.3</v.maven-war-plugin>
<v.maven-shade-plugin>3.2.0</v.maven-shade-plugin>
<!-- https://github.com/mojohaus/native2ascii-maven-plugin/wiki -->
<v.native2ascii-maven-plugin>2.0.1</v.native2ascii-maven-plugin>
<v.site-maven-plugin>0.12</v.site-maven-plugin>
<v.sonar-maven-plugin>3.7.0.1746</v.sonar-maven-plugin>
<!-- taglist 检查报告 -->
<v.taglist-maven-plugin>2.4</v.taglist-maven-plugin>
<v.license-maven-plugin>3.0</v.license-maven-plugin>
<!-- 优雅地管理项目版本号 -->
<!-- http://www.mojohaus.org/versions-maven-plugin/ -->
<v.versions-maven-plugin>2.7</v.versions-maven-plugin>
<!-- http://maven.apache.org/plugins/maven-project-info-reports-plugin/ -->
<v.maven-project-info-reports-plugin>3.0.0</v.maven-project-info-reports-plugin>
<!-- https://github.com/jacoco/jacoco/releases -->
<v.jacoco-maven-plugin>0.8.5</v.jacoco-maven-plugin>
<!-- https://github.com/git-commit-id/maven-git-commit-id-plugin -->
<v.git-commit-id-plugin>2.2.6</v.git-commit-id-plugin>
<!-- **********************end plugins version******************************************* -->
<!-- **********************begin native2ascii config******************************************* -->
<native2ascii-maven-plugin.pattern>**/*.properties</native2ascii-maven-plugin.pattern>
<native2ascii-maven-plugin.encoding>${project.build.sourceEncoding}</native2ascii-maven-plugin.encoding>
<!-- **********************end native2ascii config******************************************* -->
<!-- **********************begin maven-surefire-plugin config******************************************* -->
<maven-surefire-plugin.skip>true</maven-surefire-plugin.skip>
<!-- **********************end maven-surefire-plugin config******************************************* -->
<!-- **********************begin site-maven-plugin config******************************************* -->
<site-maven-plugin.repositoryName>feilong-platform</site-maven-plugin.repositoryName>
<site-maven-plugin.repositoryOwner>venusdrogon</site-maven-plugin.repositoryOwner>
<site-maven-plugin.branch>refs/heads/repository</site-maven-plugin.branch>
<!-- git commit message -->
<site-maven-plugin.message>:rocket: deploy ${project.name} ${project.version}</site-maven-plugin.message>
<!-- github server corresponds to entry in ~/.m2/settings.xml -->
<github.global.server>github</github.global.server>
<!-- **********************end site-maven-plugin config******************************************* -->
<!-- **********************begin maven-javadoc-plugin config******************************************* -->
<!-- 用来编译生成文档 -->
<maven-javadoc-plugin.encoding>${project.build.sourceEncoding}</maven-javadoc-plugin.encoding>
<maven-javadoc-plugin.docencoding>${project.build.sourceEncoding}</maven-javadoc-plugin.docencoding>
<!-- 用来显示页面 META 部分 content="text/html; charset=GBK" -->
<maven-javadoc-plugin.charset>${project.build.sourceEncoding}</maven-javadoc-plugin.charset>
<!-- 用于读取javadoc 内部使用的 配置文件, 比如 描述文字为 描述,英文环境为description -->
<maven-javadoc-plugin.locale>en_US</maven-javadoc-plugin.locale>
<maven-javadoc-plugin.outputDirectory>${folder.gh-pages}/javadocs</maven-javadoc-plugin.outputDirectory>
<maven-javadoc-plugin.reportOutputDirectory>${folder.gh-pages}/javadocs</maven-javadoc-plugin.reportOutputDirectory>
<maven-javadoc-plugin.destDir>${project.name}</maven-javadoc-plugin.destDir>
<maven-javadoc-plugin.javadocVersion>1.8</maven-javadoc-plugin.javadocVersion>
<maven-javadoc-plugin.javadocDirectory>/Users/feilong/Development/DataCommon/Files/Java/Apache Maven/javadoc/springframework</maven-javadoc-plugin.javadocDirectory>
<maven-javadoc-plugin.stylesheetfile>${maven-javadoc-plugin.javadocDirectory}/stylesheet.css</maven-javadoc-plugin.stylesheetfile>
<!-- If no custom stylesheet is specified in the <stylesheetfile/> parameter,
the <stylesheet/> parameter will indicate which stylesheet will be used
the stylesheet included in the maven javadoc plugin or the default stylesheet used by the javadoc tool.
maven value indicates the maven javadoc plugin stylesheet,
while java value indicates the default javadoc tool stylesheet.
The default is java value if not specified.
-->
<maven-javadoc-plugin.stylesheet>java</maven-javadoc-plugin.stylesheet>
<maven-site-plugin.outputDirectory>${folder.gh-pages}/site/${project.name}</maven-site-plugin.outputDirectory>
<!-- **********************end maven-javadoc-plugin config******************************************* -->
<developer.feilong.name>feilong</developer.feilong.name>
<!-- <developer.feilong.email>[email protected]</developer.feilong.email> -->
</properties>
<!-- 项目发布管理 -->
<distributionManagement>
<!-- <url>file://${user.home}/feilong/repository</url> -->
<repository>
<id>internal.repo</id>
<name>Temporary Staging Repository</name>
<url>file://${project.build.directory}/mvn-repo</url>
</repository>
</distributionManagement>
<dependencies>
<!--******** slf4j******** -->
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
</dependency>
<!--******************** test************************* -->
<!-- junit -->
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<scope>test</scope>
</dependency>
<!-- hamcrest-library -->
<dependency>
<groupId>org.hamcrest</groupId>
<artifactId>hamcrest-library</artifactId>
<scope>test</scope>
</dependency>
<!-- feilong-common-test -->
<dependency>
<groupId>com.feilong.test</groupId>
<artifactId>feilong-common-test</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
<!--*********************dependencyManagement****************************** -->
<dependencyManagement>
<dependencies>
<!--*******************feilong************************* -->
<!-- feilong-core -->
<dependency>
<groupId>com.feilong.platform</groupId>
<artifactId>feilong-core</artifactId>
<version>${version.feilong-platform}</version>
</dependency>
<!-- feilong-validator -->
<dependency>
<groupId>com.feilong.platform</groupId>
<artifactId>feilong-validator</artifactId>
<version>${version.feilong-platform}</version>
</dependency>
<!-- feilong-util-all -->
<dependency>
<groupId>com.feilong.platform</groupId>
<artifactId>feilong-util-all</artifactId>
<version>${version.feilong-platform}</version>
</dependency>
<!-- feilong-core-extension -->
<dependency>
<groupId>com.feilong.platform</groupId>
<artifactId>feilong-core-extension</artifactId>
<version>${version.feilong-platform}</version>
</dependency>
<!-- feilong-json-jsonlib -->
<dependency>
<groupId>com.feilong.json</groupId>
<artifactId>feilong-json-jsonlib</artifactId>
<version>${version.feilong-platform}</version>
</dependency>
<!-- feilong-json-jsonlib tests -->
<dependency>
<groupId>com.feilong.json</groupId>
<artifactId>feilong-json-jsonlib</artifactId>
<version>${version.feilong-platform}</version>
<classifier>tests</classifier>
</dependency>
<!-- feilong-servlet -->
<dependency>
<groupId>com.feilong.platform</groupId>
<artifactId>feilong-servlet</artifactId>
<version>${version.feilong-platform}</version>
</dependency>
<!-- feilong-taglib -->
<dependency>
<groupId>com.feilong.platform</groupId>
<artifactId>feilong-taglib</artifactId>
<version>${version.feilong-platform}</version>
</dependency>
<!-- feilong-security -->
<dependency>
<groupId>com.feilong.platform</groupId>
<artifactId>feilong-security</artifactId>
<version>${version.feilong-platform}</version>
</dependency>
<!--feilong-velocity -->
<dependency>
<groupId>com.feilong.platform</groupId>
<artifactId>feilong-velocity</artifactId>
<version>${version.feilong-platform}</version>
</dependency>
<!--feilong-formatter -->
<dependency>
<groupId>com.feilong.platform</groupId>
<artifactId>feilong-formatter</artifactId>
<version>${version.feilong-platform}</version>
</dependency>
<!-- feilong-io -->
<dependency>
<groupId>com.feilong.platform</groupId>
<artifactId>feilong-io</artifactId>
<version>${version.feilong-platform}</version>
</dependency>
<!-- *******************spring********************************* -->
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-framework-bom</artifactId>
<version>${version.spring}</version>
<type>pom</type>
<scope>import</scope>
</dependency>
<!-- **************************************************** -->
<!-- java mail -->
<dependency>
<groupId>javax.mail</groupId>
<artifactId>mail</artifactId>
<version>${version.javamail}</version>
</dependency>
<!-- *********************apache******************************* -->
<!-- commons-logging 仅仅 统一下版本 feilong platform 不直接使用这个jar -->
<dependency>
<groupId>commons-logging</groupId>
<artifactId>commons-logging</artifactId>
<version>${version.commons-logging}</version>
</dependency>
<!-- commons-lang 仅仅 统一下版本 feilong platform 不直接使用这个jar -->
<dependency>
<artifactId>commons-lang</artifactId>
<groupId>commons-lang</groupId>
<version>${version.commons-lang}</version>
</dependency>
<!-- commons-lang3 -->
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-lang3</artifactId>
<version>${version.commons-lang3}</version>
</dependency>
<!-- commons-compress -->
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-compress</artifactId>
<version>${version.commons-compress}</version>
</dependency>
<!-- commons-validator -->
<dependency>
<groupId>commons-validator</groupId>
<artifactId>commons-validator</artifactId>
<version>${version.commons-validator}</version>
<exclusions>
<exclusion>
<artifactId>commons-logging</artifactId>
<groupId>commons-logging</groupId>
</exclusion>
<exclusion>
<artifactId>commons-beanutils</artifactId>
<groupId>commons-beanutils</groupId>
</exclusion>
<exclusion>
<artifactId>commons-collections</artifactId>
<groupId>commons-collections</groupId>
</exclusion>
</exclusions>
</dependency>
<!-- net.sf.json-lib -->
<dependency>
<groupId>net.sf.json-lib</groupId>
<artifactId>json-lib</artifactId>
<version>${version.json-lib}</version>
<classifier>jdk15</classifier>
<exclusions>
<exclusion>
<artifactId>commons-logging</artifactId>
<groupId>commons-logging</groupId>
</exclusion>
<exclusion>
<artifactId>commons-beanutils</artifactId>
<groupId>commons-beanutils</groupId>
</exclusion>
<exclusion>
<artifactId>commons-collections</artifactId>
<groupId>commons-collections</groupId>
</exclusion>
<!-- 2.5 -->
<exclusion>
<artifactId>commons-lang</artifactId>
<groupId>commons-lang</groupId>
</exclusion>
</exclusions>
</dependency>
<!-- jsch 用于sftp 传输 -->
<dependency>
<groupId>com.jcraft</groupId>
<artifactId>jsch</artifactId>
<version>${version.jsch}</version>
</dependency>
<!-- jsoup -->
<dependency>
<groupId>org.jsoup</groupId>
<artifactId>jsoup</artifactId>
<version>${version.jsoup}</version>
</dependency>
<!-- commons-net -->
<dependency>
<groupId>commons-net</groupId>
<artifactId>commons-net</artifactId>
<version>${version.commons-net}</version>
</dependency>
<!-- commons-httpclient -->
<dependency>
<groupId>commons-httpclient</groupId>
<artifactId>commons-httpclient</artifactId>
<version>${version.commons-httpclient}</version>
</dependency>
<!--
HttpCore is a set of low level HTTP transport components that can be used to build custom client and server side HTTP services with a minimal footprint.
HttpCore supports two I/O models: blocking I/O model based on the classic Java I/O and non-blocking, event driven I/O model based on Java NIO.
The blocking I/O model may be more appropriate for data intensive, low latency scenarios, whereas the non-blocking model may be more appropriate for high latency
scenarios where raw data throughput is less important than the ability to handle thousands of simultaneous HTTP connections in a resource efficient manner.
-->
<!-- 4.5.3 没有 httpcore -->
<!-- httpcore
<dependency>
<groupId>org.apache.httpcomponents</groupId>
<artifactId>httpcore</artifactId>
<version>${version.httpcore}</version>
</dependency> -->
<dependency>
<groupId>org.apache.httpcomponents</groupId>
<artifactId>httpmime</artifactId>
<version>${version.httpcomponents}</version>
<exclusions>
<exclusion>
<groupId>org.apache.httpcomponents</groupId>
<artifactId>httpclient</artifactId>
</exclusion>
</exclusions>
</dependency>
<!-- HttpClient is a HTTP/1.1 compliant HTTP agent implementation based on HttpCore.
It also provides reusable components for client-side authentication,
HTTP state management, and HTTP connection management.
HttpComponents Client is a successor of and replacement for Commons HttpClient 3.x.
Users of Commons HttpClient are strongly encouraged to upgrade. -->
<dependency>
<groupId>org.apache.httpcomponents</groupId>
<artifactId>httpclient</artifactId>
<version>${version.httpcomponents}</version>
<exclusions>
<exclusion>
<artifactId>commons-logging</artifactId>
<groupId>commons-logging</groupId>
</exclusion>
</exclusions>
</dependency>
<!-- commons-beanutils -->
<dependency>
<groupId>commons-beanutils</groupId>
<artifactId>commons-beanutils</artifactId>
<version>${version.commons-beanutils}</version>
<exclusions>
<exclusion>
<artifactId>commons-logging</artifactId>
<groupId>commons-logging</groupId>
</exclusion>
<exclusion>
<artifactId>commons-collections</artifactId>
<groupId>commons-collections</groupId>
</exclusion>
</exclusions>
</dependency>
<!-- commons-codec -->
<dependency>
<groupId>commons-codec</groupId>
<artifactId>commons-codec</artifactId>
<version>${version.commons-codec}</version>
</dependency>
<!-- commons-digester -->
<dependency>
<groupId>commons-digester</groupId>
<artifactId>commons-digester</artifactId>
<version>${version.commons-digester}</version>
<exclusions>
<exclusion>
<artifactId>commons-collections</artifactId>
<groupId>commons-collections</groupId>
</exclusion>
<exclusion>
<artifactId>commons-beanutils</artifactId>
<groupId>commons-beanutils</groupId>
</exclusion>
<exclusion>
<artifactId>commons-logging</artifactId>
<groupId>commons-logging</groupId>
</exclusion>
</exclusions>
</dependency>
<!-- commons-configuration 通用接口,它可以使应用程序通过多种途径读取配置信 -->
<dependency>
<groupId>commons-configuration</groupId>
<artifactId>commons-configuration</artifactId>
<version>${version.commons-configuration}</version>
<exclusions>
<exclusion>
<artifactId>commons-lang</artifactId>
<groupId>commons-lang</groupId>
</exclusion>
<exclusion>
<artifactId>commons-logging</artifactId>
<groupId>commons-logging</groupId>
</exclusion>
</exclusions>
</dependency>
<!-- commons-configuration2 -->
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-configuration2</artifactId>
<version>${version.commons-configuration2}</version>
</dependency>
<!-- commons-collections Requires Java 1.2+ 仅仅 统一下版本 feilong platform 不直接使用这个jar -->
<dependency>
<groupId>commons-collections</groupId>
<artifactId>commons-collections</artifactId>
<version>${version.commons-collections}</version>
</dependency>
<!-- commons-collections4 Requires Java 5.0+ -->
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-collections4</artifactId>
<version>${version.commons-collections4}</version>
</dependency>
<!-- commons-fileupload -->
<dependency>
<groupId>commons-fileupload</groupId>
<artifactId>commons-fileupload</artifactId>
<version>${version.commons-fileupload}</version>
</dependency>
<!-- commons-io -->
<dependency>
<groupId>commons-io</groupId>
<artifactId>commons-io</artifactId>
<version>${version.commons-io}</version>
</dependency>
<!-- *********************json******************************* -->
<!-- xercesImpl 解决This parser does not support specification "null" version "null" -->
<dependency>
<groupId>xerces</groupId>
<artifactId>xercesImpl</artifactId>
<version>${version.xercesImpl}</version>
</dependency>
<!-- xml-apis -->
<dependency>
<groupId>xml-apis</groupId>
<artifactId>xml-apis</artifactId>
<version>${version.xml-apis}</version>
</dependency>
<!-- xstream -->
<dependency>
<groupId>com.thoughtworks.xstream</groupId>
<artifactId>xstream</artifactId>
<version>${version.xstream}</version>
</dependency>
<!--******** slf4j******** -->
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<version>${version.slf4j}</version>
</dependency>
<!-- ***********log4j *************** -->
<!-- slf4j-log4j12 -->
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-log4j12</artifactId>
<version>${version.slf4j}</version>
<exclusions>
<exclusion>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
</exclusion>
<exclusion>
<groupId>log4j</groupId>
<artifactId>log4j</artifactId>
</exclusion>
</exclusions>
</dependency>
<!-- log4j -->
<dependency>
<groupId>log4j</groupId>
<artifactId>log4j</artifactId>
<version>${version.log4j}</version>
</dependency>
<!--******** logback ******** -->
<dependency>
<groupId>ch.qos.logback</groupId>
<artifactId>logback-core</artifactId>
<version>${version.logback}</version>
</dependency>
<dependency>
<groupId>ch.qos.logback</groupId>
<artifactId>logback-classic</artifactId>
<version>${version.logback}</version>
</dependency>
<!--jul-to-slf4j 桥接 用来输出 Java Logging Framework (JUL) java.util.logging.* -->
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>jul-to-slf4j</artifactId>
<version>${version.slf4j}</version>
</dependency>
<!-- jcl-over-slf4j 桥接,用来输出 第三方Jakarta Commons Logging (JCL) -->
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>jcl-over-slf4j</artifactId>
<version>${version.slf4j}</version>
</dependency>
<!-- log4j-over-slf4j桥接 -->
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>log4j-over-slf4j</artifactId>
<version>${version.slf4j}</version>
</dependency>
<!--************************* tiles******************* -->
<dependency>
<groupId>org.apache.tiles</groupId>
<artifactId>tiles-core</artifactId>
<version>${version.tiles}</version>
<exclusions>
<exclusion>
<groupId>org.slf4j</groupId>
<artifactId>jcl-over-slf4j</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.apache.tiles</groupId>
<artifactId>tiles-api</artifactId>
<version>${version.tiles}</version>
</dependency>
<dependency>
<groupId>org.apache.tiles</groupId>
<artifactId>tiles-jsp</artifactId>
<version>${version.tiles}</version>
</dependency>
<!-- jstl -->
<dependency>
<groupId>javax.servlet</groupId>
<artifactId>jstl</artifactId>
<version>${version.jstl}</version>
</dependency>
<!--********************************provided******************************** -->
<!-- servlet-api -->
<dependency>
<groupId>javax.servlet</groupId>
<artifactId>javax.servlet-api</artifactId>
<version>${version.servlet-api}</version>
<scope>provided</scope>
</dependency>
<!-- jsp-api -->
<dependency>
<groupId>javax.servlet.jsp</groupId>
<artifactId>jsp-api</artifactId>
<version>${version.jsp-api}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>javax.el</groupId>
<artifactId>el-api</artifactId>
<version>${version.el-api}</version>
<scope>provided</scope>
</dependency>
<!-- junit -->
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>${version.junit}</version>
<scope>test</scope>
</dependency>
<!-- hamcrest-library -->
<dependency>
<groupId>org.hamcrest</groupId>
<artifactId>hamcrest-library</artifactId>
<version>${version.hamcrest-library}</version>
<scope>test</scope>
</dependency>
<!-- feilong-common-test -->
<dependency>
<groupId>com.feilong.test</groupId>
<artifactId>feilong-common-test</artifactId>
<version>${version.feilong-common-test}</version>
<scope>test</scope>
</dependency>
</dependencies>
</dependencyManagement>
<!--********************************build****************************************** -->
<build>
<plugins>
<!-- maven-project-info-reports-plugin -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-project-info-reports-plugin</artifactId>
<version>${v.maven-project-info-reports-plugin}</version>
</plugin>
<!-- versions-maven-plugin -->
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>versions-maven-plugin</artifactId>
<version>${v.versions-maven-plugin}</version>
</plugin>
<!-- maven-scm-plugin -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-scm-plugin</artifactId>
<version>${v.maven-scm-plugin}</version>
<configuration>
<connectionType>developerConnection</connectionType>
</configuration>
</plugin>
<!-- sonar-maven-plugin -->
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>sonar-maven-plugin</artifactId>
<version>${v.sonar-maven-plugin}</version>
</plugin>
<!-- site-maven-plugin -->
<plugin>
<groupId>com.github.github</groupId>
<artifactId>site-maven-plugin</artifactId>
<version>${v.site-maven-plugin}</version>
<configuration>
<!-- git commit message -->
<message>${site-maven-plugin.message}</message>
<!-- disable webpage processing -->
<noJekyll>true</noJekyll>
<merge>true</merge>
<!-- remote branch name -->
<branch>${site-maven-plugin.branch}</branch>
<!-- github repo name -->
<repositoryName>${site-maven-plugin.repositoryName}</repositoryName>
<!-- github username -->
<repositoryOwner>${site-maven-plugin.repositoryOwner}</repositoryOwner>
<!-- matches distribution management repository url above -->
<outputDirectory>${project.build.directory}/mvn-repo</outputDirectory>
<includes>
<include>**/*</include>
</includes>
</configuration>
<executions>
<!-- run site-maven-plugin's 'site' target as part of the build's normal 'deploy' phase -->
<execution>
<goals>
<goal>site</goal>
</goals>
<phase>deploy</phase>
</execution>
</executions>
</plugin>
<!-- native2ascii-maven-plugin 国际化插件 -->
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>native2ascii-maven-plugin</artifactId>
<version>${v.native2ascii-maven-plugin}</version>
<executions>
<execution>
<id>native2ascii-resources</id>
<goals>
<goal>resources</goal>
</goals>
<phase>process-resources</phase><!-- default -->
<configuration>
<srcDir>src/main/resources</srcDir><!-- default -->
<targetDir>${project.build.outputDirectory}</targetDir>
<encoding>${native2ascii-maven-plugin.encoding}</encoding>
<includes>
<include>${native2ascii-maven-plugin.pattern}</include>
</includes>
</configuration>
</execution>
<execution>
<id>native2ascii-testResources</id>
<goals>
<goal>testResources</goal>
</goals>
<phase>process-test-resources</phase><!-- default -->
<configuration>
<srcDir>src/test/resources</srcDir><!-- default -->
<targetDir>${project.build.testOutputDirectory}</targetDir>
<encoding>${native2ascii-maven-plugin.encoding}</encoding>
<includes>
<include>${native2ascii-maven-plugin.pattern}</include>
</includes>
</configuration>
</execution>