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

43 lines
1.2 KiB
XML
Raw Normal View History

2013-08-06 00:50:24 +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/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<artifactId>spring-boot-sample-websocket</artifactId>
<packaging>war</packaging>
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
2013-08-30 17:43:00 +08:00
<version>0.5.0.BUILD-SNAPSHOT</version>
<relativePath>../../spring-boot-starters/spring-boot-starter-parent</relativePath>
2013-08-06 00:50:24 +08:00
</parent>
<properties>
<java.version>1.7</java.version>
<tomcat.version>8.0.0-RC1</tomcat.version>
<start-class>org.springframework.boot.samples.websocket.config.SampleWebSocketsApplication</start-class>
2013-08-06 00:50:24 +08:00
</properties>
<dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-websocket</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-actuator</artifactId>
2013-08-06 00:50:24 +08:00
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
</plugin>
</plugins>
</build>
</project>