mirror of
https://github.com/BgaSol/sol-cloud
synced 2026-04-25 02:47:23 +00:00
- Introduced a new WebSocket plugin module to enable WebSocket communication - Updated gateway CORS configuration to exclude WebSocket paths - Enhanced Redis setup by adding message listener support - Modified Sa-Token configuration to allow WebSocket paths to bypass filters - Added WebSocket configuration class for STOMP endpoints and message broker setup - Implemented Tomcat WebSocket configuration for scientific WebSocket initialization
31 lines
No EOL
1.1 KiB
XML
31 lines
No EOL
1.1 KiB
XML
<?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/xsd/maven-4.0.0.xsd">
|
|
<modelVersion>4.0.0</modelVersion>
|
|
<parent>
|
|
<groupId>com.bgasol</groupId>
|
|
<artifactId>plugin</artifactId>
|
|
<version>0.0.1</version>
|
|
</parent>
|
|
|
|
<artifactId>plugin-websocket</artifactId>
|
|
|
|
<properties>
|
|
<maven.compiler.source>17</maven.compiler.source>
|
|
<maven.compiler.target>17</maven.compiler.target>
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
</properties>
|
|
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-starter-websocket</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.bgasol</groupId>
|
|
<artifactId>plugin-redis</artifactId>
|
|
<version>0.0.1</version>
|
|
</dependency>
|
|
</dependencies>
|
|
</project> |