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
The following commit(s) were added to refs/heads/master by this push:
new 3726d9fddd fix: update container-tag guard to recognize flattened
org.apache.juneau.testing.* marker FQNs
3726d9fddd is described below
commit 3726d9fddde4b70dd4ac341a41e426cbdff58c5b
Author: James Bognar <[email protected]>
AuthorDate: Thu Jul 2 08:18:44 2026 -0400
fix: update container-tag guard to recognize flattened
org.apache.juneau.testing.* marker FQNs
Co-authored-by: Cursor <[email protected]>
---
scripts/check-container-tags.py | 10 +++++++---
1 file changed, 7 insertions(+), 3 deletions(-)
diff --git a/scripts/check-container-tags.py b/scripts/check-container-tags.py
index 9b66162dad..d8c70c582a 100644
--- a/scripts/check-container-tags.py
+++ b/scripts/check-container-tags.py
@@ -46,9 +46,13 @@ TAG_MARKERS = (
"@JettyMicroserviceTest",
"@TomcatMicroserviceTest",
"@MicroserviceTest",
- "@org.apache.juneau.testing.annotations.SpringbootTest",
- "@org.apache.juneau.testing.annotations.JettyMicroserviceTest",
- "@org.apache.juneau.testing.annotations.TomcatMicroserviceTest",
+ # Fully-qualified usages. The container marker annotations live in
+ # org.apache.juneau.testing.* (flattened from the former
+ # org.apache.juneau.testing.annotations.* package); @MicroserviceTest
+ # remains in org.apache.juneau.microservice.test.
+ "@org.apache.juneau.testing.SpringbootTest",
+ "@org.apache.juneau.testing.JettyMicroserviceTest",
+ "@org.apache.juneau.testing.TomcatMicroserviceTest",
"@org.apache.juneau.microservice.test.MicroserviceTest",
)