mirror of
https://github.com/BgaSol/sol-cloud
synced 2026-04-27 20:07:27 +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
40 lines
No EOL
1.3 KiB
XML
40 lines
No EOL
1.3 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>cloud</artifactId>
|
|
<version>0.0.1</version>
|
|
</parent>
|
|
|
|
<artifactId>plugin</artifactId>
|
|
<packaging>pom</packaging>
|
|
|
|
<modules>
|
|
<module>plugin-swagger</module>
|
|
<module>plugin-sa-token</module>
|
|
<module>plugin-redis</module>
|
|
<module>plugin-loadbalancer</module>
|
|
<module>plugin-nacos</module>
|
|
<module>plugin-openfeign</module>
|
|
<module>plugin-database</module>
|
|
<module>plugin-minio</module>
|
|
<module>plugin-micrometer</module>
|
|
<module>plugin-logger</module>
|
|
<module>plugin-websocket</module>
|
|
</modules>
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>com.bgasol</groupId>
|
|
<artifactId>common-constant</artifactId>
|
|
<version>0.0.1</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.bgasol</groupId>
|
|
<artifactId>common-util</artifactId>
|
|
<version>0.0.1</version>
|
|
</dependency>
|
|
</dependencies>
|
|
</project> |