From: Ruslan Kashapov Date: Wed, 15 Feb 2023 13:58:40 +0000 (+0200) Subject: Fix restconf-nb websocket initialization failure on karaf X-Git-Tag: v5.0.3~10 X-Git-Url: https://git.opendaylight.org/gerrit/gitweb?a=commitdiff_plain;h=af9b71c6837f46cfa324f59467750648ecfa34d3;p=netconf.git Fix restconf-nb websocket initialization failure on karaf Websocket servlet is initialized using indirect dependency on server bundle (string class name in code, dynamic-import in manifest). This dependency require to be set explicitly. Then required bundle will be installed with odl-restconf-nb feature and missing artifacts will be available for restcong-nb class loader. JIRA: NETCONF-953 Change-Id: I82e9133af1aeb98518f97a14a3574b82573f92dc Signed-off-by: Ruslan Kashapov --- diff --git a/restconf/restconf-nb/pom.xml b/restconf/restconf-nb/pom.xml index fa10e4b85e..6301d1f70f 100644 --- a/restconf/restconf-nb/pom.xml +++ b/restconf/restconf-nb/pom.xml @@ -231,6 +231,10 @@ org.eclipse.jetty.websocket websocket-servlet + + org.eclipse.jetty.websocket + websocket-server + @@ -317,6 +321,7 @@ MD SAL Restconf Connector + org.eclipse.jetty.websocket.server, *