Skip to content
This repository was archived by the owner on Oct 2, 2023. It is now read-only.

Commit 90c1ccd

Browse files
authored
fix: google-auth-library-oauth2-http as runtime scope (#835)
Fixing 5e6df9e#diff-ffb9a9b739efe6b09867da3f99a340c03424ea746c895074cb51fbe55ba39f6eL91
1 parent cc0c351 commit 90c1ccd

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -57,13 +57,13 @@ implementation 'com.google.cloud:google-cloud-kms'
5757
If you are using Gradle without BOM, add this to your dependencies:
5858

5959
```Groovy
60-
implementation 'com.google.cloud:google-cloud-kms:2.6.0'
60+
implementation 'com.google.cloud:google-cloud-kms:2.6.2'
6161
```
6262

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

6565
```Scala
66-
libraryDependencies += "com.google.cloud" % "google-cloud-kms" % "2.6.0"
66+
libraryDependencies += "com.google.cloud" % "google-cloud-kms" % "2.6.2"
6767
```
6868

6969
## Authentication

google-cloud-kms/pom.xml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -78,18 +78,18 @@
7878
<groupId>com.google.api.grpc</groupId>
7979
<artifactId>proto-google-iam-v1</artifactId>
8080
</dependency>
81+
<dependency>
82+
<groupId>com.google.auth</groupId>
83+
<artifactId>google-auth-library-oauth2-http</artifactId>
84+
<scope>runtime</scope>
85+
</dependency>
8186

8287
<!-- Test dependencies -->
8388
<dependency>
8489
<groupId>junit</groupId>
8590
<artifactId>junit</artifactId>
8691
<scope>test</scope>
8792
</dependency>
88-
<dependency>
89-
<groupId>com.google.auth</groupId>
90-
<artifactId>google-auth-library-oauth2-http</artifactId>
91-
<scope>test</scope>
92-
</dependency>
9393
<dependency>
9494
<groupId>com.google.api.grpc</groupId>
9595
<artifactId>grpc-google-iam-v1</artifactId>

0 commit comments

Comments
 (0)