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

Commit

Permalink
fix: google-auth-library-oauth2-http as runtime scope (#835)
Browse files Browse the repository at this point in the history
  • Loading branch information
suztomo committed Aug 11, 2022
1 parent cc0c351 commit 90c1ccd
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -57,13 +57,13 @@ implementation 'com.google.cloud:google-cloud-kms'
If you are using Gradle without BOM, add this to your dependencies:

```Groovy
implementation 'com.google.cloud:google-cloud-kms:2.6.0'
implementation 'com.google.cloud:google-cloud-kms:2.6.2'
```

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

```Scala
libraryDependencies += "com.google.cloud" % "google-cloud-kms" % "2.6.0"
libraryDependencies += "com.google.cloud" % "google-cloud-kms" % "2.6.2"
```

## Authentication
Expand Down
10 changes: 5 additions & 5 deletions google-cloud-kms/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -78,18 +78,18 @@
<groupId>com.google.api.grpc</groupId>
<artifactId>proto-google-iam-v1</artifactId>
</dependency>
<dependency>
<groupId>com.google.auth</groupId>
<artifactId>google-auth-library-oauth2-http</artifactId>
<scope>runtime</scope>
</dependency>

<!-- Test dependencies -->
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.google.auth</groupId>
<artifactId>google-auth-library-oauth2-http</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.google.api.grpc</groupId>
<artifactId>grpc-google-iam-v1</artifactId>
Expand Down

0 comments on commit 90c1ccd

Please sign in to comment.