|
1 | 1 | <?xml version="1.0" encoding="UTF-8"?> |
2 | | -<projectxmlns="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"> |
3 | | -<modelVersion>4.0.0</modelVersion> |
4 | | -<artifactId>websocket</artifactId> |
5 | | -<parent> |
6 | | -<!-- Your own application should inherit from spring-boot-starter-parent--> |
7 | | -<groupId>org.springframework.boot</groupId> |
8 | | -<artifactId>spring-boot-starter-parent</artifactId> |
9 | | -<version>1.0.2.RELEASE</version> |
10 | | -</parent> |
11 | | -<groupId>napi</groupId> |
12 | | -<name>Spring Boot WebSocket Sample</name> |
13 | | -<description>Spring Boot WebSocket Sample</description> |
14 | | -<version>1.0-SNAPSHOT</version> |
15 | | -<url>http://projects.spring.io/spring-boot/</url> |
16 | | -<organization> |
17 | | -<name>Pivotal Software, Inc.</name> |
18 | | -<url>http://www.spring.io</url> |
19 | | -</organization> |
20 | | -<properties> |
21 | | -<main.basedir>${basedir}/../..</main.basedir> |
22 | | -<java.version>1.7</java.version> |
23 | | -</properties> |
24 | | -<dependencies> |
25 | | -<dependency> |
26 | | -<groupId>org.springframework.boot</groupId> |
27 | | -<artifactId>spring-boot-starter-websocket</artifactId> |
28 | | -</dependency> |
29 | | -<dependency> |
30 | | -<groupId>org.springframework.boot</groupId> |
31 | | -<artifactId>spring-boot-starter-actuator</artifactId> |
32 | | -</dependency> |
33 | | -<dependency> |
34 | | -<groupId>org.springframework.boot</groupId> |
35 | | -<artifactId>spring-boot-starter-test</artifactId> |
36 | | -<scope>test</scope> |
37 | | -</dependency> |
38 | | -</dependencies> |
39 | | -<build> |
40 | | -<plugins> |
41 | | -<plugin> |
42 | | -<groupId>org.springframework.boot</groupId> |
43 | | -<artifactId>spring-boot-maven-plugin</artifactId> |
44 | | -</plugin> |
45 | | -</plugins> |
46 | | -</build> |
| 2 | +<project |
| 3 | +xmlns="http://maven.apache.org/POM/4.0.0" |
| 4 | +xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 5 | +xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd" |
| 6 | +> |
| 7 | + <modelVersion>4.0.0</modelVersion> |
| 8 | + <artifactId>websocket</artifactId> |
| 9 | + <parent> |
| 10 | +<!-- Your own application should inherit from spring-boot-starter-parent--> |
| 11 | + <groupId>org.springframework.boot</groupId> |
| 12 | + <artifactId>spring-boot-starter-parent</artifactId> |
| 13 | + <version>1.0.2.RELEASE</version> |
| 14 | + </parent> |
| 15 | + <groupId>napi</groupId> |
| 16 | + <name>Spring Boot WebSocket Sample</name> |
| 17 | + <description>Spring Boot WebSocket Sample</description> |
| 18 | + <version>1.0-SNAPSHOT</version> |
| 19 | + <url>http://projects.spring.io/spring-boot/</url> |
| 20 | + <organization> |
| 21 | + <name>Pivotal Software, Inc.</name> |
| 22 | + <url>http://www.spring.io</url> |
| 23 | + </organization> |
| 24 | + <properties> |
| 25 | + <main.basedir>${basedir}/../..</main.basedir> |
| 26 | + <java.version>1.7</java.version> |
| 27 | + </properties> |
| 28 | + <dependencies> |
| 29 | + <dependency> |
| 30 | + <groupId>org.springframework.boot</groupId> |
| 31 | + <artifactId>spring-boot-starter-websocket</artifactId> |
| 32 | + </dependency> |
| 33 | + <dependency> |
| 34 | + <groupId>org.springframework.boot</groupId> |
| 35 | + <artifactId>spring-boot-starter-actuator</artifactId> |
| 36 | + </dependency> |
| 37 | + <dependency> |
| 38 | + <groupId>org.springframework.boot</groupId> |
| 39 | + <artifactId>spring-boot-starter-test</artifactId> |
| 40 | + <scope>test</scope> |
| 41 | + </dependency> |
| 42 | + </dependencies> |
| 43 | + <build> |
| 44 | + <plugins> |
| 45 | + <plugin> |
| 46 | + <groupId>org.springframework.boot</groupId> |
| 47 | + <artifactId>spring-boot-maven-plugin</artifactId> |
| 48 | + </plugin> |
| 49 | + </plugins> |
| 50 | + </build> |
47 | 51 | </project> |