Skip to content

Commit 8071de6

Browse files
suztomogcf-owl-bot[bot]
andauthoredAug 8, 2022
fix: declaring 2 http libraries as runtime (#1341)
* fix: declaring 2 http libraries as runtime Fixing similar issues as googleapis/java-pubsub#1239 * 🦉 Updates from OwlBot post-processor See https://github.com/googleapis/repo-automation-bots/blob/main/packages/owl-bot/README.md Co-authored-by: Owl Bot <gcf-owl-bot[bot]@users.noreply.github.com>
1 parent f82104a commit 8071de6

File tree

2 files changed

+12
-12
lines changed

2 files changed

+12
-12
lines changed
 

‎README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -56,13 +56,13 @@ implementation 'com.google.cloud:google-cloud-bigtable'
5656
If you are using Gradle without BOM, add this to your dependencies:
5757

5858
```Groovy
59-
implementation 'com.google.cloud:google-cloud-bigtable:2.10.1'
59+
implementation 'com.google.cloud:google-cloud-bigtable:2.10.2'
6060
```
6161

6262
If you are using SBT, add this to your dependencies:
6363

6464
```Scala
65-
libraryDependencies += "com.google.cloud" % "google-cloud-bigtable" % "2.10.1"
65+
libraryDependencies += "com.google.cloud" % "google-cloud-bigtable" % "2.10.2"
6666
```
6767

6868
## Authentication

‎google-cloud-bigtable/pom.xml

+10-10
Original file line numberDiff line numberDiff line change
@@ -122,6 +122,16 @@
122122
<groupId>com.google.guava</groupId>
123123
<artifactId>guava</artifactId>
124124
</dependency>
125+
<dependency>
126+
<groupId>com.google.http-client</groupId>
127+
<artifactId>google-http-client</artifactId>
128+
<scope>runtime</scope>
129+
</dependency>
130+
<dependency>
131+
<groupId>com.google.http-client</groupId>
132+
<artifactId>google-http-client-gson</artifactId>
133+
<scope>runtime</scope>
134+
</dependency>
125135
<dependency>
126136
<groupId>com.google.protobuf</groupId>
127137
<artifactId>protobuf-java</artifactId>
@@ -262,16 +272,6 @@
262272
<artifactId>opencensus-impl</artifactId>
263273
<scope>test</scope>
264274
</dependency>
265-
<dependency>
266-
<groupId>com.google.http-client</groupId>
267-
<artifactId>google-http-client</artifactId>
268-
<scope>test</scope>
269-
</dependency>
270-
<dependency>
271-
<groupId>com.google.http-client</groupId>
272-
<artifactId>google-http-client-gson</artifactId>
273-
<scope>test</scope>
274-
</dependency>
275275
<dependency>
276276
<groupId>junit</groupId>
277277
<artifactId>junit</artifactId>

0 commit comments

Comments
 (0)