You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
59 lines
1.6 KiB
59 lines
1.6 KiB
<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> |
|
<version>0.5.0.BUILD-SNAPSHOT</version> |
|
<relativePath>../../spring-boot-starters/spring-boot-starter-parent</relativePath> |
|
</parent> |
|
|
|
<properties> |
|
<java.version>1.7</java.version> |
|
<tomcat.version>8.0-SNAPSHOT</tomcat.version> |
|
<start-class>org.springframework.boot.samples.websocket.config.ApplicationConfiguration</start-class> |
|
</properties> |
|
|
|
|
|
<dependencies> |
|
<dependency> |
|
<groupId>org.springframework.boot</groupId> |
|
<artifactId>spring-boot-starter-websocket</artifactId> |
|
<version>${spring.boot.version}</version> |
|
</dependency> |
|
<!-- For SockJS --> |
|
<dependency> |
|
<groupId>org.eclipse.jetty.websocket</groupId> |
|
<artifactId>websocket-client</artifactId> |
|
<version>9.0.3.v20130506</version> |
|
<scope>test</scope> |
|
</dependency> |
|
</dependencies> |
|
|
|
<build> |
|
<plugins> |
|
<plugin> |
|
<groupId>org.springframework.boot</groupId> |
|
<artifactId>spring-boot-maven-plugin</artifactId> |
|
</plugin> |
|
</plugins> |
|
</build> |
|
|
|
<repositories> |
|
<repository> |
|
<id>tomcat-snapshots</id> |
|
<url>https://repository.apache.org/content/repositories/snapshots</url> |
|
<snapshots> |
|
<enabled>true</enabled> |
|
</snapshots> |
|
<releases> |
|
<enabled>false</enabled> |
|
</releases> |
|
</repository> |
|
</repositories> |
|
|
|
</project>
|
|
|