This is an automated email from the ASF dual-hosted git repository. lgoldstein pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/mina-sshd.git
commit 8435a98a2a31d6d5a9907ecca6062e446329c91a Author: Lyor Goldstein <lgoldst...@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 -->