spring-boot/spring-boot-samples/spring-boot-sample-jetty/pom.xml

50 lines
1.6 KiB
XML
Raw Permalink 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>
<!-- Your own application should inherit from spring-boot-starter-parent -->
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-samples</artifactId>
<version>${revision}</version>
2013-04-24 17:02:07 +08:00
</parent>
<artifactId>spring-boot-sample-jetty</artifactId>
2014-04-01 16:10:51 +08:00
<name>Spring Boot Jetty Sample</name>
<description>Spring Boot Jetty Sample</description>
2013-07-06 01:26:50 +08:00
<properties>
<main.basedir>${basedir}/../..</main.basedir>
<servlet-api.version>3.1.0</servlet-api.version>
2013-07-06 01:26:50 +08:00
</properties>
2013-04-24 17:02:07 +08:00
<dependencies>
2016-12-31 03:46:24 +08:00
<!-- Compile -->
2013-04-24 17:02:07 +08:00
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
<exclusions>
<exclusion>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-tomcat</artifactId>
</exclusion>
</exclusions>
2013-04-24 17:02:07 +08:00
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-jetty</artifactId>
2013-04-24 17:02:07 +08:00
</dependency>
2016-12-31 03:46:24 +08:00
<!-- Test -->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>
<scope>test</scope>
</dependency>
2013-04-24 17:02:07 +08:00
</dependencies>
2013-07-06 01:26:50 +08:00
<build>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
2013-07-06 01:26:50 +08:00
</plugin>
</plugins>
</build>
2013-04-24 17:02:07 +08:00
</project>