diff --git a/synthtool/gcp/templates/java_library/renovate.json b/synthtool/gcp/templates/java_library/renovate.json index fc6412701..30c85dc09 100644 --- a/synthtool/gcp/templates/java_library/renovate.json +++ b/synthtool/gcp/templates/java_library/renovate.json @@ -56,6 +56,7 @@ }, { "packagePatterns": [ + "^{{metadata['repo']['distribution_name']}}", "^com.google.cloud:libraries-bom" ], "semanticCommitType": "chore", @@ -75,4 +76,4 @@ } ], "semanticCommits": true -} +} \ No newline at end of file diff --git a/synthtool/languages/java.py b/synthtool/languages/java.py index dff873987..ea0997ad8 100644 --- a/synthtool/languages/java.py +++ b/synthtool/languages/java.py @@ -324,10 +324,9 @@ def bazel_library( def _merge_common_templates( source_text: str, destination_text: str, file_path: Path ) -> str: - log.debug(f"merge: {file_path}") # keep any existing pom.xml if file_path.match("pom.xml"): - log.info(f"existing pom file found ({file_path}) - keeping the existing") + log.debug(f"existing pom file found ({file_path}) - keeping the existing") return destination_text # by default return the newly generated content