2013-04-24 17:02:07 +08:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
2014-04-01 18:05:51 +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 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
2013-04-24 17:02:07 +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>
|
2015-11-16 19:18:54 +08:00
|
|
|
<version>1.3.1.BUILD-SNAPSHOT</version>
|
2013-04-24 17:02:07 +08:00
|
|
|
</parent>
|
2013-07-31 07:20:36 +08:00
|
|
|
<artifactId>spring-boot-starter-web</artifactId>
|
2014-04-01 16:10:51 +08:00
|
|
|
<name>Spring Boot Web Starter</name>
|
|
|
|
<description>Spring Boot Web Starter</description>
|
|
|
|
<url>http://projects.spring.io/spring-boot/</url>
|
|
|
|
<organization>
|
|
|
|
<name>Pivotal Software, Inc.</name>
|
|
|
|
<url>http://www.spring.io</url>
|
|
|
|
</organization>
|
2013-07-06 01:26:50 +08:00
|
|
|
<properties>
|
|
|
|
<main.basedir>${basedir}/../..</main.basedir>
|
|
|
|
</properties>
|
2013-04-24 17:02:07 +08:00
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
2014-04-30 23:42:23 +08:00
|
|
|
<groupId>org.springframework.boot</groupId>
|
2013-07-31 07:20:36 +08:00
|
|
|
<artifactId>spring-boot-starter</artifactId>
|
2013-04-24 17:02:07 +08:00
|
|
|
</dependency>
|
2013-07-14 13:46:45 +08:00
|
|
|
<dependency>
|
2014-04-30 23:42:23 +08:00
|
|
|
<groupId>org.springframework.boot</groupId>
|
2013-07-31 07:20:36 +08:00
|
|
|
<artifactId>spring-boot-starter-tomcat</artifactId>
|
2013-04-24 17:02:07 +08:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
2015-03-30 21:01:48 +08:00
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-starter-validation</artifactId>
|
2013-04-24 17:02:07 +08:00
|
|
|
</dependency>
|
2014-05-17 13:47:15 +08:00
|
|
|
<dependency>
|
2015-03-30 21:01:48 +08:00
|
|
|
<groupId>com.fasterxml.jackson.core</groupId>
|
|
|
|
<artifactId>jackson-databind</artifactId>
|
2014-05-17 13:47:15 +08:00
|
|
|
</dependency>
|
2014-06-09 13:37:48 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework</groupId>
|
|
|
|
<artifactId>spring-web</artifactId>
|
|
|
|
</dependency>
|
2013-04-24 17:02:07 +08:00
|
|
|
<dependency>
|
2013-07-06 01:26:50 +08:00
|
|
|
<groupId>org.springframework</groupId>
|
|
|
|
<artifactId>spring-webmvc</artifactId>
|
2013-04-24 17:02:07 +08:00
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
</project>
|