Revert "fix(deps): update dependency io.netty:netty-bom to v4.1.98.fi… (#9539)

This commit is contained in:
Mateusz Rzeszutek 2023-09-22 17:19:00 +02:00 committed by GitHub
parent 40011e6d89
commit 6ba2f499e4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 1 deletions

View File

@ -122,7 +122,8 @@ abstract class NettyAlignmentRule : ComponentMetadataRule {
with(ctx.details) {
if (id.group == "io.netty" && id.name != "netty") {
if (id.version.startsWith("4.1.")) {
belongsTo("io.netty:netty-bom:4.1.98.Final", false)
// netty 4.1.98 does not run correctly on MacOS
belongsTo("io.netty:netty-bom:4.1.97.Final", false)
} else if (id.version.startsWith("4.0.")) {
belongsTo("io.netty:netty-bom:4.0.56.Final", false)
}