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'
57
57
If you are using Gradle without BOM, add this to your dependencies:
58
58
59
59
``` Groovy
60
- implementation 'com.google.cloud:google-cloud-bigtable:2.44.0 '
60
+ implementation 'com.google.cloud:google-cloud-bigtable:2.44.1 '
61
61
```
62
62
63
63
If you are using SBT, add this to your dependencies:
64
64
65
65
``` Scala
66
- libraryDependencies += " com.google.cloud" % " google-cloud-bigtable" % " 2.44.0 "
66
+ libraryDependencies += " com.google.cloud" % " google-cloud-bigtable" % " 2.44.1 "
67
67
```
68
68
<!-- {x-version-update-end} -->
69
69
@@ -545,7 +545,7 @@ Java is a registered trademark of Oracle and/or its affiliates.
545
545
[kokoro-badge-link-5] : http://storage.googleapis.com/cloud-devrel-public/java/badges/java-bigtable/java11.html
546
546
[stability-image] : https://img.shields.io/badge/stability-stable-green
547
547
[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
549
549
[authentication] : https://github.com/googleapis/google-cloud-java#authentication
550
550
[auth-scopes] : https://developers.google.com/identity/protocols/oauth2/scopes
551
551
[predefined-iam-roles] : https://cloud.google.com/iam/docs/understanding-roles#predefined_roles
Original file line number Diff line number Diff line change 63
63
64
64
<dependencyManagement >
65
65
<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 -->
66
77
<dependency >
67
78
<groupId >com.google.cloud</groupId >
68
79
<artifactId >gapic-libraries-bom</artifactId >
Original file line number Diff line number Diff line change 213
213
</dependencyManagement >
214
214
215
215
<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
+
216
233
<plugins >
217
234
<!-- Using maven site plugin only as a hook for javadoc:aggregate, don't need the reports -->
218
235
<plugin >
You can’t perform that action at this time.
0 commit comments