We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 40011e6 commit 6ba2f49Copy full SHA for 6ba2f49
conventions/src/main/kotlin/otel.java-conventions.gradle.kts
@@ -122,7 +122,8 @@ abstract class NettyAlignmentRule : ComponentMetadataRule {
122
with(ctx.details) {
123
if (id.group == "io.netty" && id.name != "netty") {
124
if (id.version.startsWith("4.1.")) {
125
- belongsTo("io.netty:netty-bom:4.1.98.Final", false)
+ // netty 4.1.98 does not run correctly on MacOS
126
+ belongsTo("io.netty:netty-bom:4.1.97.Final", false)
127
} else if (id.version.startsWith("4.0.")) {
128
belongsTo("io.netty:netty-bom:4.0.56.Final", false)
129
}
0 commit comments