You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@nifi.apache.org by pv...@apache.org on 2021/10/05 07:51:34 UTC

[nifi] branch main updated: NIFI-9275 Upgraded Jetty from 9.4.43 to 9.4.44

This is an automated email from the ASF dual-hosted git repository.

pvillard pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/nifi.git


The following commit(s) were added to refs/heads/main by this push:
     new 36f8b6a  NIFI-9275 Upgraded Jetty from 9.4.43 to 9.4.44
36f8b6a is described below

commit 36f8b6a200c5fa2be9637baa89a0b171be9f2d51
Author: exceptionfactory <ex...@apache.org>
AuthorDate: Mon Oct 4 10:08:28 2021 -0500

    NIFI-9275 Upgraded Jetty from 9.4.43 to 9.4.44
    
    - Added Jetty websocket dependencies for consistent versioning
    
    Signed-off-by: Pierre Villard <pi...@gmail.com>
    
    This closes #5434.
---
 pom.xml | 17 ++++++++++++++++-
 1 file changed, 16 insertions(+), 1 deletion(-)

diff --git a/pom.xml b/pom.xml
index b64d8ba..9735288 100644
--- a/pom.xml
+++ b/pom.xml
@@ -97,7 +97,7 @@
         <org.bouncycastle.version>1.69</org.bouncycastle.version>
         <org.slf4j.version>1.7.32</org.slf4j.version>
         <ranger.version>2.1.0</ranger.version>
-        <jetty.version>9.4.43.v20210629</jetty.version>
+        <jetty.version>9.4.44.v20210927</jetty.version>
         <jackson.version>2.12.3</jackson.version>
         <jaxb.runtime.version>2.3.5</jaxb.runtime.version>
         <jakarta.xml.bind-api.version>2.3.3</jakarta.xml.bind-api.version>
@@ -445,6 +445,21 @@
                 <version>${jetty.version}</version>
             </dependency>
             <dependency>
+                <groupId>org.eclipse.jetty.websocket</groupId>
+                <artifactId>websocket-api</artifactId>
+                <version>${jetty.version}</version>
+            </dependency>
+            <dependency>
+                <groupId>org.eclipse.jetty.websocket</groupId>
+                <artifactId>websocket-client</artifactId>
+                <version>${jetty.version}</version>
+            </dependency>
+            <dependency>
+                <groupId>org.eclipse.jetty.websocket</groupId>
+                <artifactId>websocket-server</artifactId>
+                <version>${jetty.version}</version>
+            </dependency>
+            <dependency>
                 <groupId>org.eclipse.jetty</groupId>
                 <artifactId>apache-jsp</artifactId>
                 <version>${jetty.version}</version>