Skip to content

Commit 2d005c1

Browse files
committed
Do not include unpublish docs module in BOM
Resolves gh-1353
1 parent 742eef4 commit 2d005c1

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

micrometer-tracing-bom/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ description 'Micrometer Tracing BOM (Bill of Materials) for managing Micrometer
77
dependencies {
88
constraints {
99
rootProject.subprojects
10-
.findAll { !it.name.contains('micrometer-tracing-bom') && !it.name.contains('benchmarks') }
10+
.findAll {proj -> !['bom', 'benchmarks', 'docs'].find { proj.name.contains(it) } }
1111
.each { api(group: it.group, name: it.name, version: it.version.toString()) }
1212
}
1313
javaPlatform.allowDependencies()

0 commit comments

Comments
 (0)