File tree Expand file tree Collapse file tree 1 file changed +8
-3
lines changed Expand file tree Collapse file tree 1 file changed +8
-3
lines changed Original file line number Diff line number Diff line change @@ -279,10 +279,15 @@ def update_bom_pom(filename: str, modules: List[module.Module]):
279
279
# is prefixed with `{main_artifact_group_id}.api.grpc`, rather than
280
280
# `com.google.api.grpc`.
281
281
# https://github.com/googleapis/google-cloud-java/issues/9125
282
+ # However, some exceptions are com.google.area120 and com.google.analytics.
283
+ # https://github.com/googleapis/google-cloud-java/issues/9304
282
284
def _proto_group_id (main_artifact_group_id : str ) -> str :
283
- prefix = "com.google" \
284
- if main_artifact_group_id == "com.google.cloud" \
285
- else main_artifact_group_id
285
+ prefix = "com.google"
286
+ list_of_group_id = ["com.google.cloud" ,
287
+ "com.google.area120" ,
288
+ "com.google.analytics" ]
289
+ if main_artifact_group_id not in list_of_group_id :
290
+ prefix = main_artifact_group_id
286
291
return f"{ prefix } .api.grpc"
287
292
288
293
You can’t perform that action at this time.
0 commit comments