2015-06-02 04:22:08 +08:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
2019-03-17 00:01:11 +08:00
|
|
|
<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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
|
2015-06-02 04:22:08 +08:00
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<parent>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-parent</artifactId>
|
2017-06-01 05:27:23 +08:00
|
|
|
<version>${revision}</version>
|
2015-06-02 04:22:08 +08:00
|
|
|
<relativePath>../spring-boot-parent</relativePath>
|
|
|
|
</parent>
|
2015-06-05 03:31:49 +08:00
|
|
|
<artifactId>spring-boot-devtools</artifactId>
|
2015-06-02 04:22:08 +08:00
|
|
|
<name>Spring Boot Developer Tools</name>
|
|
|
|
<description>Spring Boot Developer Tools</description>
|
|
|
|
<properties>
|
2017-06-01 05:27:23 +08:00
|
|
|
<main.basedir>${basedir}/../..</main.basedir>
|
2015-06-02 04:22:08 +08:00
|
|
|
</properties>
|
|
|
|
<dependencies>
|
|
|
|
<!-- Compile -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-autoconfigure</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<!-- Optional -->
|
2015-10-29 20:37:04 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>javax.servlet</groupId>
|
|
|
|
<artifactId>javax.servlet-api</artifactId>
|
|
|
|
<optional>true</optional>
|
|
|
|
</dependency>
|
2016-02-11 23:55:25 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework</groupId>
|
|
|
|
<artifactId>spring-jdbc</artifactId>
|
|
|
|
<optional>true</optional>
|
|
|
|
</dependency>
|
2016-03-02 18:51:53 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework</groupId>
|
|
|
|
<artifactId>spring-orm</artifactId>
|
|
|
|
<optional>true</optional>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.hibernate</groupId>
|
2017-02-28 15:17:55 +08:00
|
|
|
<artifactId>hibernate-core</artifactId>
|
2016-03-02 18:51:53 +08:00
|
|
|
<optional>true</optional>
|
2016-02-11 23:55:25 +08:00
|
|
|
</dependency>
|
2015-06-02 04:22:08 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework</groupId>
|
|
|
|
<artifactId>spring-web</artifactId>
|
|
|
|
<optional>true</optional>
|
|
|
|
</dependency>
|
2015-09-04 00:36:06 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.security</groupId>
|
|
|
|
<artifactId>spring-security-config</artifactId>
|
|
|
|
<optional>true</optional>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.security</groupId>
|
|
|
|
<artifactId>spring-security-web</artifactId>
|
|
|
|
<optional>true</optional>
|
|
|
|
</dependency>
|
2015-12-04 19:58:40 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.data</groupId>
|
|
|
|
<artifactId>spring-data-redis</artifactId>
|
|
|
|
<optional>true</optional>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.session</groupId>
|
2017-06-23 02:43:53 +08:00
|
|
|
<artifactId>spring-session-core</artifactId>
|
2015-12-04 19:58:40 +08:00
|
|
|
<optional>true</optional>
|
|
|
|
</dependency>
|
2015-06-02 04:22:08 +08:00
|
|
|
<!-- Annotation processing -->
|
2017-01-21 06:02:51 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-autoconfigure-processor</artifactId>
|
|
|
|
<optional>true</optional>
|
|
|
|
</dependency>
|
2015-06-02 04:22:08 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-configuration-processor</artifactId>
|
|
|
|
<optional>true</optional>
|
|
|
|
</dependency>
|
|
|
|
<!-- Test -->
|
2016-11-19 09:27:54 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
2016-12-01 23:25:47 +08:00
|
|
|
<artifactId>spring-boot-test-support</artifactId>
|
2016-11-19 09:27:54 +08:00
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2016-02-20 03:14:36 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-test</artifactId>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>ch.qos.logback</groupId>
|
|
|
|
<artifactId>logback-classic</artifactId>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2016-02-11 23:55:25 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.h2database</groupId>
|
|
|
|
<artifactId>h2</artifactId>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2017-06-02 22:35:44 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.zaxxer</groupId>
|
|
|
|
<artifactId>HikariCP</artifactId>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2015-06-02 04:22:08 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework</groupId>
|
|
|
|
<artifactId>spring-webmvc</artifactId>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2016-12-25 03:05:16 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework</groupId>
|
|
|
|
<artifactId>spring-websocket</artifactId>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2017-02-28 20:15:45 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.hateoas</groupId>
|
|
|
|
<artifactId>spring-hateoas</artifactId>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2017-04-07 20:25:27 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.derby</groupId>
|
|
|
|
<artifactId>derby</artifactId>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.derby</groupId>
|
|
|
|
<artifactId>derbyclient</artifactId>
|
|
|
|
<version>${derby.version}</version>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2016-12-25 03:05:16 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.tomcat.embed</groupId>
|
|
|
|
<artifactId>tomcat-embed-websocket</artifactId>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2015-06-02 04:22:08 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.tomcat.embed</groupId>
|
|
|
|
<artifactId>tomcat-embed-core</artifactId>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2016-10-21 04:02:21 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.tomcat.embed</groupId>
|
|
|
|
<artifactId>tomcat-embed-jasper</artifactId>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2015-06-02 04:22:08 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.jetty.websocket</groupId>
|
|
|
|
<artifactId>websocket-client</artifactId>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2017-04-07 20:25:27 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.hsqldb</groupId>
|
|
|
|
<artifactId>hsqldb</artifactId>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2016-02-11 23:55:25 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.postgresql</groupId>
|
|
|
|
<artifactId>postgresql</artifactId>
|
2016-02-12 17:39:05 +08:00
|
|
|
<scope>test</scope>
|
2016-02-11 23:55:25 +08:00
|
|
|
</dependency>
|
2015-06-02 04:22:08 +08:00
|
|
|
<dependency>
|
2016-02-20 03:14:36 +08:00
|
|
|
<groupId>org.thymeleaf</groupId>
|
|
|
|
<artifactId>thymeleaf</artifactId>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.thymeleaf</groupId>
|
2017-01-25 21:53:21 +08:00
|
|
|
<artifactId>thymeleaf-spring5</artifactId>
|
2016-02-20 03:14:36 +08:00
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>nz.net.ultraq.thymeleaf</groupId>
|
|
|
|
<artifactId>thymeleaf-layout-dialect</artifactId>
|
2015-06-02 04:22:08 +08:00
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
</project>
|