Skip to content

Commit 482d649

Browse files
authored
fix(java): skip fixing poms for special modules (#1744)
fix(java): handle empty modules Fixes #1743
1 parent 239f962 commit 482d649

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

docker/owlbot/java/src/fix-poms.py

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -318,6 +318,13 @@ def main():
318318
)
319319
main_module = existing_modules[artifact_id]
320320

321+
if artifact_id in ["grafeas", "google-cloud-dns",
322+
"google-cloud-notification"]:
323+
# There are special libraries that are not automatically generated
324+
print(f"Skipping a special case library {artifact_id} that do not have "
325+
" the standard module structure.")
326+
return
327+
321328
parent_artifact_id = f"{artifact_id}-parent"
322329

323330
if parent_artifact_id not in existing_modules:

0 commit comments

Comments
 (0)