Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion samples/snippets/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@
<dependency>
<groupId>com.google.cloud</groupId>
<artifactId>libraries-bom</artifactId>
<version>26.73.0</version>
<version>26.74.0</version>
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

medium

While this BOM update is beneficial, it highlights a pre-existing dependency management issue within this file. The google-cloud-bigtable dependency (lines 110-115) has its version hardcoded to 2.62.0. This new libraries-bom version 26.74.0 provides google-cloud-bigtable at version 2.71.0.

Pinning the version overrides the version provided by the BOM, which can lead to dependency conflicts and negates the purpose of using a BOM. It is recommended to remove the <version>2.62.0</version> line for google-cloud-bigtable to allow the BOM to manage its version. This should be addressed in a follow-up change.

<type>pom</type>
<scope>import</scope>
</dependency>
Expand Down