Skip to content

Commit

Permalink
Revert "fix(deps): update dependency io.netty:netty-bom to v4.1.98.fi… (
Browse files Browse the repository at this point in the history
  • Loading branch information
Mateusz Rzeszutek authored Sep 22, 2023
1 parent 40011e6 commit 6ba2f49
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion conventions/src/main/kotlin/otel.java-conventions.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -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)
}
Expand Down

0 comments on commit 6ba2f49

Please sign in to comment.