You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@mina.apache.org by lg...@apache.org on 2020/05/15 07:25:24 UTC

[mina-sshd] 09/17: Upgraded Netty version to 4.1.50

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

lgoldstein pushed a commit to branch SSHD-966
in repository https://gitbox.apache.org/repos/asf/mina-sshd.git

commit 966b609f877d3edf1a23c366af0226faf2b23fa4
Author: Lyor Goldstein <lg...@apache.org>
AuthorDate: Fri May 15 07:14:20 2020 +0300

    Upgraded Netty version to 4.1.50
---
 sshd-netty/pom.xml | 15 ++++++++++++---
 1 file changed, 12 insertions(+), 3 deletions(-)

diff --git a/sshd-netty/pom.xml b/sshd-netty/pom.xml
index 52d6bcf..8fa432c 100644
--- a/sshd-netty/pom.xml
+++ b/sshd-netty/pom.xml
@@ -33,9 +33,20 @@
 
     <properties>
         <projectRoot>${project.basedir}/..</projectRoot>
-        <netty.version>4.1.48.Final</netty.version>
     </properties>
 
+    <dependencyManagement>
+        <dependencies>
+            <dependency>
+                <groupId>io.netty</groupId>
+                <artifactId>netty-bom</artifactId>
+                <version>4.1.50.Final</version>
+                <type>pom</type>
+                <scope>import</scope>
+            </dependency>
+        </dependencies>
+    </dependencyManagement>
+
     <dependencies>
         <dependency>
             <groupId>org.apache.sshd</groupId>
@@ -45,12 +56,10 @@
         <dependency>
             <groupId>io.netty</groupId>
             <artifactId>netty-transport</artifactId>
-            <version>${netty.version}</version>
         </dependency>
         <dependency>
             <groupId>io.netty</groupId>
             <artifactId>netty-handler</artifactId>
-            <version>${netty.version}</version>
         </dependency>
 
         <!-- test dependencies -->