|
| 1 | +<?xml version="1.0" encoding="UTF-8"?> |
| 2 | +<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 3 | + xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
| 4 | + <modelVersion>4.0.0</modelVersion> |
| 5 | + |
| 6 | + <artifactId>spring-boot-demo-websocket-socketio</artifactId> |
| 7 | + <version>1.0.0-SNAPSHOT</version> |
| 8 | + <packaging>jar</packaging> |
| 9 | + |
| 10 | + <name>spring-boot-demo-websocket-socketio</name> |
| 11 | + <description>Demo project for Spring Boot</description> |
| 12 | + |
| 13 | + <parent> |
| 14 | + <groupId>com.xkcoding</groupId> |
| 15 | + <artifactId>spring-boot-demo</artifactId> |
| 16 | + <version>1.0.0-SNAPSHOT</version> |
| 17 | + </parent> |
| 18 | + |
| 19 | + <properties> |
| 20 | + <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
| 21 | + <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> |
| 22 | + <java.version>1.8</java.version> |
| 23 | + <netty-socketio.version>1.7.12</netty-socketio.version> |
| 24 | + </properties> |
| 25 | + |
| 26 | + <dependencies> |
| 27 | + <dependency> |
| 28 | + <groupId>com.corundumstudio.socketio</groupId> |
| 29 | + <artifactId>netty-socketio</artifactId> |
| 30 | + <version>${netty-socketio.version}</version> |
| 31 | + </dependency> |
| 32 | + |
| 33 | + <dependency> |
| 34 | + <groupId>org.springframework.boot</groupId> |
| 35 | + <artifactId>spring-boot-starter-web</artifactId> |
| 36 | + </dependency> |
| 37 | + |
| 38 | + <dependency> |
| 39 | + <groupId>org.springframework.boot</groupId> |
| 40 | + <artifactId>spring-boot-starter-test</artifactId> |
| 41 | + <scope>test</scope> |
| 42 | + </dependency> |
| 43 | + </dependencies> |
| 44 | + |
| 45 | + <build> |
| 46 | + <finalName>spring-boot-demo-websocket-socketio</finalName> |
| 47 | + <plugins> |
| 48 | + <plugin> |
| 49 | + <groupId>org.springframework.boot</groupId> |
| 50 | + <artifactId>spring-boot-maven-plugin</artifactId> |
| 51 | + </plugin> |
| 52 | + </plugins> |
| 53 | + </build> |
| 54 | + |
| 55 | +</project> |
0 commit comments