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

Commit

Permalink
fix deps
Browse files Browse the repository at this point in the history
  • Loading branch information
codyoss committed Oct 30, 2019
1 parent 6c0c294 commit 90b346c
Show file tree
Hide file tree
Showing 2 changed files with 30 additions and 5 deletions.
12 changes: 10 additions & 2 deletions google-cloud-kms/pom.xml
Expand Up @@ -67,8 +67,16 @@
<artifactId>grpc-google-iam-v1</artifactId>
</dependency>
<dependency>
<groupId>com.google.cloud</groupId>
<artifactId>google-cloud-core-grpc</artifactId>
<groupId>io.grpc</groupId>
<artifactId>grpc-auth</artifactId>
</dependency>
<dependency>
<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>
</dependency>

<!-- Test dependencies -->
Expand Down
23 changes: 20 additions & 3 deletions pom.xml
Expand Up @@ -74,6 +74,9 @@
<threeten.version>1.4.0</threeten.version>
<javax.annotations.version>1.3.2</javax.annotations.version>
<animal-sniffer.version>1.18</animal-sniffer.version>
<google.auth.version>0.18.0</google.auth.version>
<http-client-bom.version>1.32.1</http-client-bom.version>
<google.proto-iam-v1.version>0.13.0</google.proto-iam-v1.version>
</properties>

<dependencyManagement>
Expand Down Expand Up @@ -120,6 +123,20 @@
<type>pom</type>
<scope>import</scope>
</dependency>
<dependency>
<groupId>com.google.http-client</groupId>
<artifactId>google-http-client-bom</artifactId>
<version>${http-client-bom.version}</version>
<type>pom</type>
<scope>import</scope>
</dependency>
<dependency>
<groupId>com.google.auth</groupId>
<artifactId>google-auth-library-bom</artifactId>
<version>${google.auth.version}</version>
<type>pom</type>
<scope>import</scope>
</dependency>

<dependency>
<groupId>com.google.protobuf</groupId>
Expand Down Expand Up @@ -162,9 +179,9 @@
<version>2.8.6</version>
</dependency>
<dependency>
<groupId>com.google.cloud</groupId>
<artifactId>google-cloud-core-grpc</artifactId>
<version>1.91.2</version>
<groupId>com.google.api.grpc</groupId>
<artifactId>proto-google-iam-v1</artifactId>
<version>${google.proto-iam-v1.version}</version>
</dependency>
<dependency>
<groupId>junit</groupId>
Expand Down

0 comments on commit 90b346c

Please sign in to comment.