|
@@ -16,11 +16,13 @@
|
|
|
<url>http://www.xuxueli.com/</url>
|
|
|
|
|
|
<properties>
|
|
|
- <spring-boot.version>1.3.8.RELEASE</spring-boot.version>
|
|
|
+ <spring-boot.version>1.5.6.RELEASE</spring-boot.version>
|
|
|
|
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
|
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
|
|
|
<java.version>1.7</java.version>
|
|
|
+
|
|
|
+ <jetty.version>9.2.22.v20170606</jetty.version>
|
|
|
</properties>
|
|
|
|
|
|
<dependencyManagement>
|
|
@@ -33,41 +35,44 @@
|
|
|
<type>pom</type>
|
|
|
<scope>import</scope>
|
|
|
</dependency>
|
|
|
+
|
|
|
+ <!-- jetty -->
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.eclipse.jetty</groupId>
|
|
|
+ <artifactId>jetty-server</artifactId>
|
|
|
+ <version>${jetty.version}</version>
|
|
|
+ </dependency>
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.eclipse.jetty</groupId>
|
|
|
+ <artifactId>jetty-util</artifactId>
|
|
|
+ <version>${jetty.version}</version>
|
|
|
+ </dependency>
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.eclipse.jetty</groupId>
|
|
|
+ <artifactId>jetty-http</artifactId>
|
|
|
+ <version>${jetty.version}</version>
|
|
|
+ </dependency>
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.eclipse.jetty</groupId>
|
|
|
+ <artifactId>jetty-io</artifactId>
|
|
|
+ <version>${jetty.version}</version>
|
|
|
+ </dependency>
|
|
|
+
|
|
|
</dependencies>
|
|
|
</dependencyManagement>
|
|
|
|
|
|
<dependencies>
|
|
|
-
|
|
|
- <dependency>
|
|
|
- <groupId>org.springframework.boot</groupId>
|
|
|
- <artifactId>spring-boot-starter</artifactId>
|
|
|
- </dependency>
|
|
|
-
|
|
|
- <!-- spring-boot-starter-web (提供了对web的支持,包含了spring webmvc和tomcat等web开发的特性) -->
|
|
|
+ <!-- spring-boot-starter-web (spring-webmvc + tomcat) -->
|
|
|
<dependency>
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
<artifactId>spring-boot-starter-web</artifactId>
|
|
|
</dependency>
|
|
|
-
|
|
|
<dependency>
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
<artifactId>spring-boot-starter-test</artifactId>
|
|
|
<scope>test</scope>
|
|
|
</dependency>
|
|
|
|
|
|
- <!-- c3p0 -->
|
|
|
- <dependency>
|
|
|
- <groupId>com.mchange</groupId>
|
|
|
- <artifactId>c3p0</artifactId>
|
|
|
- <version>0.9.5.2</version>
|
|
|
- </dependency>
|
|
|
- <!-- mysql-connector -->
|
|
|
- <dependency>
|
|
|
- <groupId>mysql</groupId>
|
|
|
- <artifactId>mysql-connector-java</artifactId>
|
|
|
- <version>5.1.29</version>
|
|
|
- </dependency>
|
|
|
-
|
|
|
<!-- xxl-job-core -->
|
|
|
<dependency>
|
|
|
<groupId>com.xuxueli</groupId>
|