Skip to content

Commit

Permalink
Do not include docs in BOM
Browse files Browse the repository at this point in the history
This was included by mistake and since a docs artifact is not published, it cannot be resolved.

Fixes gh-4585
  • Loading branch information
shakuzen committed Jan 18, 2024
1 parent 85f9cbf commit 9a81218
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion micrometer-bom/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,8 @@ dependencies {
!it.name.contains('sample') &&
!it.name.contains('benchmark') &&
!it.name.contains('micrometer-bom') &&
!it.name.contains('micrometer-osgi-test')
!it.name.contains('micrometer-osgi-test') &&
it.name != 'docs'
}.each {
api(group: it.group,
name: it.name,
Expand Down

0 comments on commit 9a81218

Please sign in to comment.