From 35e5b4329e1b6d2fb968e30286f3df9f48e8b075 Mon Sep 17 00:00:00 2001 From: Andy Wilkinson Date: Wed, 2 Mar 2022 15:55:15 +0000 Subject: [PATCH] Provide complete dependency management for Netty tcNative Closes gh-30010 --- .../spring-boot-dependencies/build.gradle | 30 ++++++++++++++++++- 1 file changed, 29 insertions(+), 1 deletion(-) diff --git a/spring-boot-project/spring-boot-dependencies/build.gradle b/spring-boot-project/spring-boot-dependencies/build.gradle index 31e2be36855..692789cf027 100644 --- a/spring-boot-project/spring-boot-dependencies/build.gradle +++ b/spring-boot-project/spring-boot-dependencies/build.gradle @@ -1311,7 +1311,35 @@ bom { group("io.netty") { modules = [ "netty-tcnative", - "netty-tcnative-boringssl-static" + "netty-tcnative" { + classifier = "linux-aarch_64-fedora" + }, + "netty-tcnative" { + classifier = "linux-x86_64" + }, + "netty-tcnative" { + classifier = "linux-x86_64-fedora" + }, + "netty-tcnative" { + classifier = "osx-x86_64" + }, + "netty-tcnative-boringssl-static", + "netty-tcnative-boringssl-static" { + classifier = "linux-aarch_64" + }, + "netty-tcnative-boringssl-static" { + classifier = "linux-x86_64" + }, + "netty-tcnative-boringssl-static" { + classifier = "osx-aarch_64" + }, + "netty-tcnative-boringssl-static" { + classifier = "osx-x86_64" + }, + "netty-tcnative-boringssl-static" { + classifier = "windows-x86_64" + }, + "netty-tcnative-classes" ] } }