From ed59dff373aa8b4b9f9d58f7c0b7190b81e3a1dd Mon Sep 17 00:00:00 2001 From: Alberto Zugazagoitia Date: Wed, 9 Aug 2023 14:01:57 +0200 Subject: [PATCH] Update server-websocket-jetty.adoc --- .../server/websocket/server-websocket-jetty.adoc | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/documentation/jetty-documentation/src/main/asciidoc/programming-guide/server/websocket/server-websocket-jetty.adoc b/documentation/jetty-documentation/src/main/asciidoc/programming-guide/server/websocket/server-websocket-jetty.adoc index 77e4019da24c..aef88fa9de2d 100644 --- a/documentation/jetty-documentation/src/main/asciidoc/programming-guide/server/websocket/server-websocket-jetty.adoc +++ b/documentation/jetty-documentation/src/main/asciidoc/programming-guide/server/websocket/server-websocket-jetty.adoc @@ -23,7 +23,7 @@ Jetty's WebSocket APIs are provided by the following Maven artifact: ---- org.eclipse.jetty.websocket - websocket-jetty-api + jetty-websocket-jetty-api {version} ---- @@ -34,14 +34,14 @@ Jetty's implementation of the Jetty WebSocket APIs is provided by the following ---- org.eclipse.jetty.websocket - websocket-jetty-server + jetty-websocket-jetty-server {version} ---- [NOTE] ==== -The `websocket-jetty-api` artifact and the `websocket-jetty-server` artifact (and its transitive dependencies) should be present in the server class-path (or module-path), and never in the web application's `/WEB-INF/lib` directory. +The `jetty-websocket-jetty-api` artifact and the `jetty-websocket-jetty-server` artifact (and its transitive dependencies) should be present in the server class-path (or module-path), and never in the web application's `/WEB-INF/lib` directory. ==== To configure correctly your WebSocket application based on the Jetty WebSocket APIs, you need two steps: