Skip to content

Commit 2f7b705

Browse files
committed
exclude benchmarks subproject from BOM
Signed-off-by: Oleh Dokuka <[email protected]> Signed-off-by: Oleh Dokuka <[email protected]>
1 parent 1c41b1b commit 2f7b705

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

rsocket-bom/build.gradle

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,9 +22,11 @@ plugins {
2222

2323
description = 'RSocket Java Bill of materials.'
2424

25+
def excluded = ["rsocket-examples", "benchmarks"]
26+
2527
dependencies {
2628
constraints {
27-
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 {
2830
api it
2931
}
3032
}

0 commit comments

Comments
 (0)