This is an automated email from the ASF dual-hosted git repository. jamesbognar pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/juneau.git
commit dc908df5501e29590924960868f1771ed7abc09d Author: James Bognar <[email protected]> AuthorDate: Thu Jul 30 14:15:50 2026 -0400 build: exclude juneau-microservice-examples from the BOM completeness guard Co-authored-by: Cursor <[email protected]> --- scripts/check-bom-completeness.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/scripts/check-bom-completeness.py b/scripts/check-bom-completeness.py index 9a5a7eed3d..4a277ecd6c 100755 --- a/scripts/check-bom-completeness.py +++ b/scripts/check-bom-completeness.py @@ -29,6 +29,7 @@ A module is "consumer-facing publishable" when it is a leaf artifact - juneau-test-marshall-utils (test-only support, marshall-level fixtures) - juneau-shaded/* (uber-jars, not BOM-managed) - juneau-examples/*, juneau-petstore/* (sample apps, not published) + - juneau-microservice-examples (sample/demo REST resources, not shipped) - juneau-integration-tests (test-only) - juneau-distrib (assembly only) @@ -57,6 +58,7 @@ EXCLUDED_ARTIFACTS = { "juneau-test-utils", # test-only support module "juneau-test-marshall-utils", # test-only support module (marshall-level fixtures) "juneau-integration-tests", # cross-module test harness, not published + "juneau-microservice-examples", # sample/demo REST resources, not shipped as a framework artifact "juneau", # reactor root (defensive; also an aggregator) }
