Skip to content

Commit 96c7cce

Browse files
committed
Replace tyrus dependency with WS API
1 parent 1cf33ed commit 96c7cce

File tree

2 files changed

+8
-3
lines changed

2 files changed

+8
-3
lines changed

mq/main/mq-client/pom.xml

+3-3
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<!--
33
44
Copyright (c) 2011, 2020 Oracle and/or its affiliates. All rights reserved.
5-
Copyright (c) 2021, 2024 Contributors to the Eclipse Foundation
5+
Copyright (c) 2021, 2025 Contributors to the Eclipse Foundation
66
77
This program and the accompanying materials are made available under the
88
terms of the Eclipse Public License v. 2.0, which is available at
@@ -76,8 +76,8 @@
7676

7777
<!-- begin of websocket dependencies -->
7878
<dependency>
79-
<groupId>org.glassfish.tyrus.bundles</groupId>
80-
<artifactId>tyrus-standalone-client</artifactId>
79+
<groupId>jakarta.websocket</groupId>
80+
<artifactId>jakarta.websocket-client-api</artifactId>
8181
</dependency>
8282
<!-- end of websocket dependencies -->
8383

mq/main/pom.xml

+5
Original file line numberDiff line numberDiff line change
@@ -127,6 +127,11 @@
127127
<artifactId>jakarta.xml.soap-api</artifactId>
128128
<version>3.0.2</version>
129129
</dependency>
130+
<dependency>
131+
<groupId>jakarta.websocket</groupId>
132+
<artifactId>jakarta.websocket-client-api</artifactId>
133+
<version>2.2.0</version>
134+
</dependency>
130135
<dependency>
131136
<groupId>org.glassfish</groupId>
132137
<artifactId>jakarta.json</artifactId>

0 commit comments

Comments
 (0)