Skip to content

Commit

Permalink
Remove shaded netty dependency from POM (micrometer-metrics#4493)
Browse files Browse the repository at this point in the history
The dependency is shaded and so it should not be in the POM. We missed excluding this one when it was added in micrometer-metricsgh-3605.
  • Loading branch information
shakuzen authored Dec 14, 2023
1 parent 0fb75c1 commit 166b7bc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion implementations/micrometer-registry-statsd/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ publishing {
asNode()
.dependencies
.dependency
.findAll { ['reactor-core', 'reactor-netty-core'].contains(it.artifactId.text()) }
.findAll { ['reactor-core', 'reactor-netty-core', 'netty-transport-native-epoll'].contains(it.artifactId.text()) }
.each { it.parent().remove(it) }
}
}
Expand Down

0 comments on commit 166b7bc

Please sign in to comment.