1+ <?xml version =" 1.0" encoding =" UTF-8" ?>
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+ <groupId >sec</groupId >
8+ <artifactId >java-sec-code</artifactId >
9+ <version >1.0.0</version >
10+ <packaging >war</packaging >
11+
12+
13+ <parent >
14+ <groupId >org.springframework.boot</groupId >
15+ <artifactId >spring-boot-starter-parent</artifactId >
16+ <version >1.5.1.RELEASE</version >
17+ </parent >
18+
19+ <dependencies >
20+ <dependency >
21+ <groupId >org.springframework.boot</groupId >
22+ <artifactId >spring-boot-starter-web</artifactId >
23+ <!-- 移除嵌入式tomcat插件,为了使用非嵌入式的tomcat -->
24+ <exclusions >
25+ <exclusion >
26+ <groupId >org.springframework.boot</groupId >
27+ <artifactId >spring-boot-starter-tomcat</artifactId >
28+ </exclusion >
29+ </exclusions >
30+ </dependency >
31+
32+ <!-- 添加tomcat servlet api -->
33+ <dependency >
34+ <groupId >org.apache.tomcat</groupId >
35+ <artifactId >tomcat-servlet-api</artifactId >
36+ <version >8.0.36</version >
37+ <scope >provided</scope >
38+ </dependency >
39+
40+ <!-- 添加thymeleaf为了动态解析html-->
41+ <dependency >
42+ <groupId >org.springframework.boot</groupId >
43+ <artifactId >spring-boot-starter-thymeleaf</artifactId >
44+ </dependency >
45+
46+ <!-- 处理jdbc的mysql连接-->
47+ <dependency >
48+ <groupId >mysql</groupId >
49+ <artifactId >mysql-connector-java</artifactId >
50+ <version >8.0.12</version >
51+ </dependency >
52+
53+ <!-- 处理json数据 -->
54+ <!-- https://mvnrepository.com/artifact/com.alibaba/fastjson -->
55+ <dependency >
56+ <groupId >com.alibaba</groupId >
57+ <artifactId >fastjson</artifactId >
58+ <version >1.2.24</version >
59+ </dependency >
60+
61+
62+ <!-- jdom解析xml 最新版本为2.0.6 时间为2015-02-28 https://github.com/hunterhacker/jdom/releases-->
63+ <!-- https://mvnrepository.com/artifact/org.jdom/jdom2 -->
64+ <dependency >
65+ <groupId >org.jdom</groupId >
66+ <artifactId >jdom2</artifactId >
67+ <version >2.0.6</version >
68+ </dependency >
69+
70+ <!-- https://mvnrepository.com/artifact/org.dom4j/dom4j -->
71+ <dependency >
72+ <groupId >org.dom4j</groupId >
73+ <artifactId >dom4j</artifactId >
74+ <version >2.1.1</version >
75+ </dependency >
76+
77+
78+ <!-- 获取url根域名-->
79+ <dependency >
80+ <groupId >com.google.guava</groupId >
81+ <artifactId >guava</artifactId >
82+ <version >21.0</version >
83+ </dependency >
84+
85+ <dependency >
86+ <groupId >commons-collections</groupId >
87+ <artifactId >commons-collections</artifactId >
88+ <version >3.1</version >
89+ </dependency >
90+
91+ <dependency >
92+ <groupId >commons-lang</groupId >
93+ <artifactId >commons-lang</artifactId >
94+ <version >2.4</version > </dependency >
95+
96+ <dependency >
97+ <groupId >org.apache.httpcomponents</groupId >
98+ <artifactId >httpclient</artifactId >
99+ <version >4.3.6</version >
100+ </dependency >
101+ <dependency >
102+ <groupId >org.apache.httpcomponents</groupId >
103+ <artifactId >fluent-hc</artifactId >
104+ <version >4.3.6</version >
105+ </dependency >
106+
107+
108+ <dependency >
109+ <groupId >org.apache.logging.log4j</groupId >
110+ <artifactId >log4j-core</artifactId >
111+ <version >2.8.2</version >
112+ </dependency >
113+
114+ <dependency >
115+ <groupId >com.squareup.okhttp</groupId >
116+ <artifactId >okhttp</artifactId >
117+ <version >2.5.0</version >
118+ </dependency >
119+
120+
121+ <dependency >
122+ <groupId >org.apache.commons</groupId >
123+ <artifactId >commons-digester3</artifactId >
124+ <version >3.2</version >
125+ </dependency >
126+
127+ </dependencies >
128+
129+
130+
131+
132+ </project >
0 commit comments