123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354 |
- <?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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
- <modelVersion>4.0.0</modelVersion>
- <parent>
- <groupId>com.webchat</groupId>
- <artifactId>webchat</artifactId>
- <version>0.0.1-SNAPSHOT</version>
- </parent>
- <groupId>com.webchat</groupId>
- <artifactId>webchat-connect</artifactId>
- <version>0.0.1-SNAPSHOT</version>
- <packaging>jar</packaging>
- <name>webchat-connect</name>
- <description>webchat-connect</description>
- <properties>
- <java.version>17</java.version>
- </properties>
- <dependencies>
- <dependency>
- <groupId>com.webchat</groupId>
- <artifactId>webchat-remote</artifactId>
- <version>1.0-SNAPSHOT</version>
- </dependency>
- <!-- ################################### 集成websocket ################################### -->
- <!-- 引入 websocket 依赖类-->
- <!-- Springboot对websocket的能力支持-->
- <dependency>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-starter-websocket</artifactId>
- </dependency>
- <!-- ServerEndpoint注解来自于javax.websocket-api这个包 -->
- <dependency>
- <groupId>javax.websocket</groupId>
- <artifactId>javax.websocket-api</artifactId>
- <version>1.1</version>
- <scope>provided</scope>
- </dependency>
- </dependencies>
- <build>
- <plugins>
- <plugin>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-maven-plugin</artifactId>
- </plugin>
- </plugins>
- </build>
- </project>
|