aboutsummaryrefslogtreecommitdiffstats
path: root/tools/simple-wsclient/pom.xml
diff options
context:
space:
mode:
authorsaul.gill <saul.gill@est.tech>2023-08-10 16:58:48 +0100
committersaul.gill <saul.gill@est.tech>2023-08-14 10:01:07 +0100
commitc1794ff92134dab997a11b608d2fc5073a7c8b94 (patch)
tree4e2526d55b41c9b991011392bab807d8bd890f4b /tools/simple-wsclient/pom.xml
parent48a6922f4ce17846ee9f6cd74253ed6be740a29b (diff)
Java 17 Upgrade
Updated dependencies to latest versions Made Java 17 changes Moved all version numbers to main apex pom Issue-ID: POLICY-4675 Change-Id: Ia0c17f17ef1e536bbfddd5f488ed9510a557842f Signed-off-by: saul.gill <saul.gill@est.tech>
Diffstat (limited to 'tools/simple-wsclient/pom.xml')
-rw-r--r--tools/simple-wsclient/pom.xml21
1 files changed, 19 insertions, 2 deletions
diff --git a/tools/simple-wsclient/pom.xml b/tools/simple-wsclient/pom.xml
index d2e69579c..aa8230959 100644
--- a/tools/simple-wsclient/pom.xml
+++ b/tools/simple-wsclient/pom.xml
@@ -1,6 +1,7 @@
<!--
============LICENSE_START=======================================================
Copyright (C) 2018 Ericsson. All rights reserved.
+ Modifications Copyright (C) 2023 Nordix Foundation.
================================================================================
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
@@ -31,14 +32,30 @@
<dependencies>
<dependency>
- <groupId>org.java-websocket</groupId>
- <artifactId>Java-WebSocket</artifactId>
+ <groupId>jakarta.websocket</groupId>
+ <artifactId>jakarta.websocket-api</artifactId>
+ <version>${version.websocket.jakarta}</version>
+ </dependency>
+ <dependency>
+ <groupId>jakarta.websocket</groupId>
+ <artifactId>jakarta.websocket-client-api</artifactId>
+ <version>${version.websocket.jakarta}</version>
</dependency>
<dependency>
<groupId>org.onap.policy.apex-pdp.tools</groupId>
<artifactId>tools-common</artifactId>
<version>${project.version}</version>
</dependency>
+ <dependency>
+ <groupId>org.eclipse.jetty.websocket</groupId>
+ <artifactId>websocket-jakarta-client</artifactId>
+ <version>${version.websocket.jetty}</version>
+ </dependency>
+ <dependency>
+ <groupId>org.eclipse.jetty.websocket</groupId>
+ <artifactId>websocket-jakarta-server</artifactId>
+ <version>${version.websocket.jetty}</version>
+ </dependency>
</dependencies>
<build>