|
@@ -16,11 +16,13 @@
|
16
|
16
|
<url>http://www.xuxueli.com/</url>
|
17
|
17
|
|
18
|
18
|
<properties>
|
19
|
|
- <spring-boot.version>1.3.8.RELEASE</spring-boot.version>
|
|
19
|
+ <spring-boot.version>1.5.6.RELEASE</spring-boot.version>
|
20
|
20
|
|
21
|
21
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
22
|
22
|
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
|
23
|
23
|
<java.version>1.7</java.version>
|
|
24
|
+
|
|
25
|
+ <jetty.version>9.2.22.v20170606</jetty.version>
|
24
|
26
|
</properties>
|
25
|
27
|
|
26
|
28
|
<dependencyManagement>
|
|
@@ -33,41 +35,44 @@
|
33
|
35
|
<type>pom</type>
|
34
|
36
|
<scope>import</scope>
|
35
|
37
|
</dependency>
|
|
38
|
+
|
|
39
|
+ <!-- jetty -->
|
|
40
|
+ <dependency>
|
|
41
|
+ <groupId>org.eclipse.jetty</groupId>
|
|
42
|
+ <artifactId>jetty-server</artifactId>
|
|
43
|
+ <version>${jetty.version}</version>
|
|
44
|
+ </dependency>
|
|
45
|
+ <dependency>
|
|
46
|
+ <groupId>org.eclipse.jetty</groupId>
|
|
47
|
+ <artifactId>jetty-util</artifactId>
|
|
48
|
+ <version>${jetty.version}</version>
|
|
49
|
+ </dependency>
|
|
50
|
+ <dependency>
|
|
51
|
+ <groupId>org.eclipse.jetty</groupId>
|
|
52
|
+ <artifactId>jetty-http</artifactId>
|
|
53
|
+ <version>${jetty.version}</version>
|
|
54
|
+ </dependency>
|
|
55
|
+ <dependency>
|
|
56
|
+ <groupId>org.eclipse.jetty</groupId>
|
|
57
|
+ <artifactId>jetty-io</artifactId>
|
|
58
|
+ <version>${jetty.version}</version>
|
|
59
|
+ </dependency>
|
|
60
|
+
|
36
|
61
|
</dependencies>
|
37
|
62
|
</dependencyManagement>
|
38
|
63
|
|
39
|
64
|
<dependencies>
|
40
|
|
-
|
41
|
|
- <dependency>
|
42
|
|
- <groupId>org.springframework.boot</groupId>
|
43
|
|
- <artifactId>spring-boot-starter</artifactId>
|
44
|
|
- </dependency>
|
45
|
|
-
|
46
|
|
- <!-- spring-boot-starter-web (提供了对web的支持,包含了spring webmvc和tomcat等web开发的特性) -->
|
|
65
|
+ <!-- spring-boot-starter-web (spring-webmvc + tomcat) -->
|
47
|
66
|
<dependency>
|
48
|
67
|
<groupId>org.springframework.boot</groupId>
|
49
|
68
|
<artifactId>spring-boot-starter-web</artifactId>
|
50
|
69
|
</dependency>
|
51
|
|
-
|
52
|
70
|
<dependency>
|
53
|
71
|
<groupId>org.springframework.boot</groupId>
|
54
|
72
|
<artifactId>spring-boot-starter-test</artifactId>
|
55
|
73
|
<scope>test</scope>
|
56
|
74
|
</dependency>
|
57
|
75
|
|
58
|
|
- <!-- c3p0 -->
|
59
|
|
- <dependency>
|
60
|
|
- <groupId>com.mchange</groupId>
|
61
|
|
- <artifactId>c3p0</artifactId>
|
62
|
|
- <version>0.9.5.2</version>
|
63
|
|
- </dependency>
|
64
|
|
- <!-- mysql-connector -->
|
65
|
|
- <dependency>
|
66
|
|
- <groupId>mysql</groupId>
|
67
|
|
- <artifactId>mysql-connector-java</artifactId>
|
68
|
|
- <version>5.1.29</version>
|
69
|
|
- </dependency>
|
70
|
|
-
|
71
|
76
|
<!-- xxl-job-core -->
|
72
|
77
|
<dependency>
|
73
|
78
|
<groupId>com.xuxueli</groupId>
|