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 1c41b1b commit 2f7b705Copy full SHA for 2f7b705
rsocket-bom/build.gradle
@@ -22,9 +22,11 @@ plugins {
22
23
description = 'RSocket Java Bill of materials.'
24
25
+def excluded = ["rsocket-examples", "benchmarks"]
26
+
27
dependencies {
28
constraints {
- parent.subprojects.findAll { it.name != project.name && it.name != "rsocket-examples" }.sort { "$it.name" }.each {
29
+ parent.subprojects.findAll { it.name != project.name && !excluded.contains(it.name) } .sort { "$it.name" }.each {
30
api it
31
}
32
0 commit comments