Skip to content

Commit

Permalink
Provide complete dependency management for Netty tcNative
Browse files Browse the repository at this point in the history
Closes gh-30010
  • Loading branch information
wilkinsona committed Mar 2, 2022
1 parent 4073cf8 commit 35e5b43
Showing 1 changed file with 29 additions and 1 deletion.
30 changes: 29 additions & 1 deletion spring-boot-project/spring-boot-dependencies/build.gradle
Expand Up @@ -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"
]
}
}
Expand Down

0 comments on commit 35e5b43

Please sign in to comment.