|
@@ -1,140 +1,71 @@
|
|
|
+<?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 http://maven.apache.org/maven-v4_0_0.xsd">
|
|
|
+ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
- <groupId>org.springframework.samples</groupId>
|
|
|
- <artifactId>gs-messaging-stomp-websocket-initial</artifactId>
|
|
|
- <packaging>war</packaging>
|
|
|
+
|
|
|
+ <groupId>org.springframework</groupId>
|
|
|
+ <artifactId>gs-messaging-stomp-websocket</artifactId>
|
|
|
<version>0.1.0</version>
|
|
|
|
|
|
+ <parent>
|
|
|
+ <groupId>org.springframework.boot</groupId>
|
|
|
+ <artifactId>spring-boot-starter-parent</artifactId>
|
|
|
+ <version>0.5.0.M6</version>
|
|
|
+ </parent>
|
|
|
+
|
|
|
<dependencies>
|
|
|
<dependency>
|
|
|
- <groupId>org.springframework</groupId>
|
|
|
- <artifactId>spring-webmvc</artifactId>
|
|
|
- <version>4.0.0.BUILD-SNAPSHOT</version>
|
|
|
+ <groupId>org.springframework.boot</groupId>
|
|
|
+ <artifactId>spring-boot-starter-web</artifactId>
|
|
|
</dependency>
|
|
|
<dependency>
|
|
|
- <groupId>org.springframework</groupId>
|
|
|
- <artifactId>spring-messaging</artifactId>
|
|
|
- <version>4.0.0.BUILD-SNAPSHOT</version>
|
|
|
+ <groupId>org.springframework.boot</groupId>
|
|
|
+ <artifactId>spring-boot-starter-websocket</artifactId>
|
|
|
</dependency>
|
|
|
<dependency>
|
|
|
<groupId>org.springframework</groupId>
|
|
|
- <artifactId>spring-websocket</artifactId>
|
|
|
- <version>4.0.0.BUILD-SNAPSHOT</version>
|
|
|
- </dependency>
|
|
|
- <dependency>
|
|
|
- <groupId>com.fasterxml.jackson.core</groupId>
|
|
|
- <artifactId>jackson-databind</artifactId>
|
|
|
- <version>2.2.2</version>
|
|
|
- </dependency>
|
|
|
- <dependency>
|
|
|
- <groupId>javax.websocket</groupId>
|
|
|
- <artifactId>javax.websocket-api</artifactId>
|
|
|
- <version>1.0-rc5</version>
|
|
|
- <scope>provided</scope>
|
|
|
- </dependency>
|
|
|
- <dependency>
|
|
|
- <groupId>javax.servlet</groupId>
|
|
|
- <artifactId>javax.servlet-api</artifactId>
|
|
|
- <version>3.1-b09</version>
|
|
|
- <scope>provided</scope>
|
|
|
- </dependency>
|
|
|
-
|
|
|
-
|
|
|
- <dependency>
|
|
|
- <groupId>org.slf4j</groupId>
|
|
|
- <artifactId>slf4j-api</artifactId>
|
|
|
- <version>1.6.4</version>
|
|
|
- </dependency>
|
|
|
- <dependency>
|
|
|
- <groupId>org.slf4j</groupId>
|
|
|
- <artifactId>jcl-over-slf4j</artifactId>
|
|
|
- <version>1.6.4</version>
|
|
|
- <scope>runtime</scope>
|
|
|
- </dependency>
|
|
|
- <dependency>
|
|
|
- <groupId>org.slf4j</groupId>
|
|
|
- <artifactId>slf4j-log4j12</artifactId>
|
|
|
- <version>1.6.4</version>
|
|
|
- <scope>runtime</scope>
|
|
|
- </dependency>
|
|
|
- <dependency>
|
|
|
- <groupId>log4j</groupId>
|
|
|
- <artifactId>log4j</artifactId>
|
|
|
- <version>1.2.16</version>
|
|
|
- <scope>runtime</scope>
|
|
|
- </dependency>
|
|
|
-
|
|
|
- <dependency>
|
|
|
- <groupId>org.projectreactor</groupId>
|
|
|
- <artifactId>reactor-core</artifactId>
|
|
|
- <version>1.0.0.M1</version>
|
|
|
+ <artifactId>spring-messaging</artifactId>
|
|
|
</dependency>
|
|
|
-
|
|
|
- <!-- Required when the "stomp-broker-relay" profile is enabled -->
|
|
|
<dependency>
|
|
|
<groupId>org.projectreactor</groupId>
|
|
|
<artifactId>reactor-tcp</artifactId>
|
|
|
- <version>1.0.0.M1</version>
|
|
|
+ <version>1.0.0.RC1</version>
|
|
|
</dependency>
|
|
|
-
|
|
|
-
|
|
|
<dependency>
|
|
|
- <groupId>commons-logging</groupId>
|
|
|
- <artifactId>commons-logging</artifactId>
|
|
|
- <version>1.1</version>
|
|
|
- <exclusions>
|
|
|
- <exclusion>
|
|
|
- <groupId>javax.servlet</groupId>
|
|
|
- <artifactId>servlet-api</artifactId>
|
|
|
- </exclusion>
|
|
|
- </exclusions>
|
|
|
+ <groupId>com.fasterxml.jackson.core</groupId>
|
|
|
+ <artifactId>jackson-databind</artifactId>
|
|
|
</dependency>
|
|
|
-
|
|
|
</dependencies>
|
|
|
|
|
|
- <repositories>
|
|
|
- <repository>
|
|
|
- <id>spring-snapshots</id>
|
|
|
- <url>http://repo.springsource.org/libs-snapshot</url>
|
|
|
- <snapshots>
|
|
|
- <enabled>true</enabled>
|
|
|
- </snapshots>
|
|
|
- </repository>
|
|
|
- <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>
|
|
|
- <repository>
|
|
|
- <id>java-net-snapshots</id>
|
|
|
- <url>https://maven.java.net/content/repositories/snapshots</url>
|
|
|
- <snapshots><enabled>true</enabled></snapshots>
|
|
|
- <releases><enabled>false</enabled></releases>
|
|
|
- </repository>
|
|
|
- </repositories>
|
|
|
+ <properties>
|
|
|
+ <start-class>hello.Application</start-class>
|
|
|
+ </properties>
|
|
|
|
|
|
<build>
|
|
|
- <finalName>${project.artifactId}</finalName>
|
|
|
<plugins>
|
|
|
- <plugin>
|
|
|
- <groupId>org.apache.maven.plugins</groupId>
|
|
|
- <artifactId>maven-compiler-plugin</artifactId>
|
|
|
- <version>2.3.2</version>
|
|
|
- <configuration>
|
|
|
- <source>1.7</source>
|
|
|
- <target>1.7</target>
|
|
|
- </configuration>
|
|
|
+ <plugin>
|
|
|
+ <artifactId>maven-compiler-plugin</artifactId>
|
|
|
+ <version>2.3.2</version>
|
|
|
</plugin>
|
|
|
<plugin>
|
|
|
- <groupId>org.apache.maven.plugins</groupId>
|
|
|
- <artifactId>maven-war-plugin</artifactId>
|
|
|
- <version>2.2</version>
|
|
|
- <configuration>
|
|
|
- <failOnMissingWebXml>false</failOnMissingWebXml>
|
|
|
- </configuration>
|
|
|
+ <groupId>org.springframework.boot</groupId>
|
|
|
+ <artifactId>spring-boot-maven-plugin</artifactId>
|
|
|
</plugin>
|
|
|
</plugins>
|
|
|
</build>
|
|
|
+
|
|
|
+ <repositories>
|
|
|
+ <repository>
|
|
|
+ <id>spring-snapshots</id>
|
|
|
+ <url>http://repo.spring.io/libs-snapshot</url>
|
|
|
+ <snapshots><enabled>true</enabled></snapshots>
|
|
|
+ </repository>
|
|
|
+ </repositories>
|
|
|
+ <pluginRepositories>
|
|
|
+ <pluginRepository>
|
|
|
+ <id>spring-snapshots</id>
|
|
|
+ <url>http://repo.spring.io/libs-snapshot</url>
|
|
|
+ <snapshots><enabled>true</enabled></snapshots>
|
|
|
+ </pluginRepository>
|
|
|
+ </pluginRepositories>
|
|
|
</project>
|