Skip to content

Commit

Permalink
1.1.10
Browse files Browse the repository at this point in the history
1.支持redis集群
  • Loading branch information
wangzihaogithub committed Sep 9, 2023
1 parent 02c1b84 commit 4f69972
Show file tree
Hide file tree
Showing 14 changed files with 640 additions and 82 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ sse协议的后端API, 比websocket轻量的实时通信, 支持集群,qos,
<dependency>
<groupId>com.github.wangzihaogithub</groupId>
<artifactId>sse-server</artifactId>
<version>1.2.9</version>
<version>1.2.10</version>
</dependency>
2. 配置业务逻辑 (后端)
Expand Down
22 changes: 19 additions & 3 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>com.github.wangzihaogithub</groupId>
<artifactId>sse-server</artifactId>
<version>1.2.9</version>
<version>1.2.10</version>
<name>sse-server</name>
<description>Sse server for Spring Boot</description>
<url>https://github.com/wangzihaogithub/sse-server.git</url>
Expand Down Expand Up @@ -82,7 +82,23 @@
<version>${spring-boot.version}</version>
<scope>test</scope>
</dependency>
<!-- <dependency>-->

<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-data-redis</artifactId>
<version>2.7.0</version>
<scope>provided</scope>
<optional>true</optional>
</dependency>
<dependency>
<groupId>io.lettuce</groupId>
<artifactId>lettuce-core</artifactId>
<version>6.1.8.RELEASE</version>
<scope>provided</scope>
<optional>true</optional>
</dependency>

<!-- <dependency>-->
<!-- <groupId>com.github.wangzihaogithub</groupId>-->
<!-- <artifactId>spring-boot-protocol</artifactId>-->
<!-- <version>2.3.11</version>-->
Expand All @@ -101,7 +117,7 @@
<connection>scm:git:https://github.com/wangzihaogithub/sse-server.git</connection>
<developerConnection>scm:git:[email protected]:wangzihaogithub/sse-server.git</developerConnection>
<url>[email protected]:wangzihaogithub/sse-server.git</url>
<tag>v1.2.9</tag>
<tag>v1.2.10</tag>
</scm>

<!-- 开发者信息 -->
Expand Down
Loading

0 comments on commit 4f69972

Please sign in to comment.