2013-05-09 22:32:31 +08:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
2017-06-01 05:27:23 +08:00
|
|
|
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
2019-03-17 00:01:11 +08:00
|
|
|
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
|
2013-05-09 22:32:31 +08:00
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<parent>
|
2013-07-26 18:50:02 +08:00
|
|
|
<groupId>org.springframework.boot</groupId>
|
2013-07-31 07:20:36 +08:00
|
|
|
<artifactId>spring-boot-starters</artifactId>
|
2017-06-01 05:27:23 +08:00
|
|
|
<version>${revision}</version>
|
2013-05-09 22:32:31 +08:00
|
|
|
</parent>
|
2013-07-31 07:20:36 +08:00
|
|
|
<artifactId>spring-boot-starter</artifactId>
|
2014-04-01 16:10:51 +08:00
|
|
|
<name>Spring Boot Starter</name>
|
2016-03-30 00:19:29 +08:00
|
|
|
<description>Core starter, including auto-configuration support, logging and YAML</description>
|
2013-07-06 01:26:50 +08:00
|
|
|
<properties>
|
2017-06-01 05:27:23 +08:00
|
|
|
<main.basedir>${basedir}/../../..</main.basedir>
|
2013-07-06 01:26:50 +08:00
|
|
|
</properties>
|
2013-05-09 22:32:31 +08:00
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
2014-04-30 23:42:23 +08:00
|
|
|
<groupId>org.springframework.boot</groupId>
|
2013-07-27 03:30:54 +08:00
|
|
|
<artifactId>spring-boot</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
2014-04-30 23:42:23 +08:00
|
|
|
<groupId>org.springframework.boot</groupId>
|
2013-07-27 03:30:54 +08:00
|
|
|
<artifactId>spring-boot-autoconfigure</artifactId>
|
2014-06-09 13:37:48 +08:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-starter-logging</artifactId>
|
|
|
|
</dependency>
|
2017-09-08 20:56:31 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>javax.annotation</groupId>
|
|
|
|
<artifactId>javax.annotation-api</artifactId>
|
|
|
|
</dependency>
|
2014-06-09 13:37:48 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework</groupId>
|
|
|
|
<artifactId>spring-core</artifactId>
|
2014-05-31 08:10:06 +08:00
|
|
|
</dependency>
|
2014-02-18 18:25:26 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.yaml</groupId>
|
|
|
|
<artifactId>snakeyaml</artifactId>
|
|
|
|
<scope>runtime</scope>
|
|
|
|
</dependency>
|
2013-05-09 22:32:31 +08:00
|
|
|
</dependencies>
|
|
|
|
</project>
|