File tree Expand file tree Collapse file tree 3 files changed +31
-3
lines changed
google-cloud-bigtable-deps-bom Expand file tree Collapse file tree 3 files changed +31
-3
lines changed Original file line number Diff line number Diff line change @@ -57,13 +57,13 @@ implementation 'com.google.cloud:google-cloud-bigtable'
5757If you are using Gradle without BOM, add this to your dependencies:
5858
5959``` Groovy
60- implementation 'com.google.cloud:google-cloud-bigtable:2.44.0 '
60+ implementation 'com.google.cloud:google-cloud-bigtable:2.44.1 '
6161```
6262
6363If you are using SBT, add this to your dependencies:
6464
6565``` Scala
66- libraryDependencies += " com.google.cloud" % " google-cloud-bigtable" % " 2.44.0 "
66+ libraryDependencies += " com.google.cloud" % " google-cloud-bigtable" % " 2.44.1 "
6767```
6868<!-- {x-version-update-end} -->
6969
@@ -545,7 +545,7 @@ Java is a registered trademark of Oracle and/or its affiliates.
545545[kokoro-badge-link-5] : http://storage.googleapis.com/cloud-devrel-public/java/badges/java-bigtable/java11.html
546546[stability-image] : https://img.shields.io/badge/stability-stable-green
547547[maven-version-image] : https://img.shields.io/maven-central/v/com.google.cloud/google-cloud-bigtable.svg
548- [maven-version-link] : https://central.sonatype.com/artifact/com.google.cloud/google-cloud-bigtable/2.44.0
548+ [maven-version-link] : https://central.sonatype.com/artifact/com.google.cloud/google-cloud-bigtable/2.44.1
549549[authentication] : https://github.com/googleapis/google-cloud-java#authentication
550550[auth-scopes] : https://developers.google.com/identity/protocols/oauth2/scopes
551551[predefined-iam-roles] : https://cloud.google.com/iam/docs/understanding-roles#predefined_roles
Original file line number Diff line number Diff line change 6363
6464 <dependencyManagement >
6565 <dependencies >
66+ <!-- Temporarily downgrade grpc version since 1.68.0 was a mistake:
67+ https://github.com/grpc/grpc-java/releases/tag/v1.68.0 -->
68+ <dependency >
69+ <groupId >io.grpc</groupId >
70+ <artifactId >grpc-bom</artifactId >
71+ <version >1.67.1</version >
72+ <type >pom</type >
73+ <scope >import</scope >
74+ </dependency >
75+
76+ <!-- google cloud boms -->
6677 <dependency >
6778 <groupId >com.google.cloud</groupId >
6879 <artifactId >gapic-libraries-bom</artifactId >
Original file line number Diff line number Diff line change 213213 </dependencyManagement >
214214
215215 <build >
216+ <pluginManagement >
217+ <plugins >
218+ <!-- TODO: remove this next release -->
219+ <!-- Temporarily disable requireUpperBoundDeps
220+ rule to downgrade bad grpc release:
221+ https://github.com/grpc/grpc-java/releases/tag/v1.68.0-->
222+ <plugin >
223+ <groupId >org.apache.maven.plugins</groupId >
224+ <artifactId >maven-enforcer-plugin</artifactId >
225+ <configuration >
226+ <rulesToSkip >requireUpperBoundDeps</rulesToSkip >
227+ <failIfNoRules >false</failIfNoRules >
228+ </configuration >
229+ </plugin >
230+ </plugins >
231+ </pluginManagement >
232+
216233 <plugins >
217234 <!-- Using maven site plugin only as a hook for javadoc:aggregate, don't need the reports -->
218235 <plugin >
You can’t perform that action at this time.
0 commit comments