spring-boot/spring-boot-project/spring-boot-starters/spring-boot-starter-web/pom.xml

55 lines
1.8 KiB
XML
Raw Normal View History

2013-04-24 17:02:07 +08:00
<?xml version="1.0" encoding="UTF-8"?>
<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">
2013-04-24 17:02:07 +08:00
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starters</artifactId>
<version>${revision}</version>
2013-04-24 17:02:07 +08:00
</parent>
<artifactId>spring-boot-starter-web</artifactId>
2014-04-01 16:10:51 +08:00
<name>Spring Boot Web Starter</name>
<description>Starter for building web, including RESTful, applications using Spring
MVC. Uses Tomcat as the default embedded container</description>
2013-07-06 01:26:50 +08:00
<properties>
<main.basedir>${basedir}/../../..</main.basedir>
2013-07-06 01:26:50 +08:00
</properties>
<scm>
<url>${git.url}</url>
<connection>${git.connection}</connection>
<developerConnection>${git.developerConnection}</developerConnection>
</scm>
2013-04-24 17:02:07 +08:00
<dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-json</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-tomcat</artifactId>
2013-04-24 17:02:07 +08:00
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-validation</artifactId>
<exclusions>
<exclusion>
<groupId>org.apache.tomcat.embed</groupId>
<artifactId>tomcat-embed-el</artifactId>
</exclusion>
</exclusions>
2013-04-24 17:02:07 +08:00
</dependency>
<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>