Copilot commented on code in PR #12389:
URL: https://github.com/apache/cloudstack/pull/12389#discussion_r2671743385


##########
pom.xml:
##########
@@ -727,6 +728,17 @@
                 <artifactId>xml-apis</artifactId>
                 <version>2.0.2</version>
             </dependency>
+            <!-- enforced protobuf version here as mysql-connector-java is 
pulling older version (3.19.3) -->
+            <dependency>
+                <groupId>com.google.protobuf</groupId>
+                <artifactId>protobuf-java</artifactId>
+                <version>${cs.protobuf.version}</version>
+            </dependency>
+            <dependency>
+                <groupId>com.google.protobuf</groupId>
+                <artifactId>protobuf-java-util</artifactId>
+                <version>${cs.protobuf.version}</version>
+            </dependency>
             <dependency>

Review Comment:
   The protobuf-java-util dependency is being added to dependency management, 
but there doesn't appear to be any usage of this artifact in the codebase. 
Unless there's a specific need for protobuf JSON/util functionality, consider 
removing this dependency to keep the dependency management lean. If it's needed 
for future use or by transitive dependencies, consider adding a comment 
explaining the rationale.
   ```suggestion
   
   ```



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to