Skip to content

Commit db52dcb

Browse files
authored
Upgrade to WebSocket 2.1 API (#6617)
1 parent abd96ba commit db52dcb

File tree

3 files changed

+14
-1
lines changed

3 files changed

+14
-1
lines changed

dependencies/pom.xml

+6-1
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@
8080
<version.lib.jakarta.persistence-api>3.0.0</version.lib.jakarta.persistence-api>
8181
<version.lib.jakarta.transaction-api>2.0.0</version.lib.jakarta.transaction-api>
8282
<version.lib.jakarta.validation-api>3.0.0</version.lib.jakarta.validation-api>
83-
<version.lib.jakarta.websockets-api>2.0.0</version.lib.jakarta.websockets-api>
83+
<version.lib.jakarta.websockets-api>2.1.0</version.lib.jakarta.websockets-api>
8484
<version.lib.jakarta.xml.bind-api>4.0.0</version.lib.jakarta.xml.bind-api>
8585
<version.lib.jandex>2.4.3.Final</version.lib.jandex>
8686
<version.lib.jaxb-core>3.0.2</version.lib.jaxb-core>
@@ -514,6 +514,11 @@
514514
<artifactId>jakarta.websocket-api</artifactId>
515515
<version>${version.lib.jakarta.websockets-api}</version>
516516
</dependency>
517+
<dependency>
518+
<groupId>jakarta.websocket</groupId>
519+
<artifactId>jakarta.websocket-client-api</artifactId>
520+
<version>${version.lib.jakarta.websockets-api}</version>
521+
</dependency>
517522
<dependency>
518523
<groupId>org.glassfish.tyrus</groupId>
519524
<artifactId>tyrus-core</artifactId>

microprofile/websocket/pom.xml

+4
Original file line numberDiff line numberDiff line change
@@ -72,6 +72,10 @@
7272
<groupId>jakarta.websocket</groupId>
7373
<artifactId>jakarta.websocket-api</artifactId>
7474
</dependency>
75+
<dependency>
76+
<groupId>jakarta.websocket</groupId>
77+
<artifactId>jakarta.websocket-client-api</artifactId>
78+
</dependency>
7579
<dependency>
7680
<groupId>io.helidon.common.features</groupId>
7781
<artifactId>helidon-common-features-api</artifactId>

reactive/webserver/websocket/pom.xml

+4
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,10 @@
3939
<groupId>jakarta.websocket</groupId>
4040
<artifactId>jakarta.websocket-api</artifactId>
4141
</dependency>
42+
<dependency>
43+
<groupId>jakarta.websocket</groupId>
44+
<artifactId>jakarta.websocket-client-api</artifactId>
45+
</dependency>
4246
<dependency>
4347
<groupId>org.glassfish.tyrus</groupId>
4448
<artifactId>tyrus-core</artifactId>

0 commit comments

Comments
 (0)