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

Commit

Permalink
fix: dependency declarations (#4)
Browse files Browse the repository at this point in the history
* fix: add iam declared dependencies

* fix: declared dependencies
  • Loading branch information
chingor13 committed Oct 3, 2019
1 parent f8488c3 commit 6e3d962
Show file tree
Hide file tree
Showing 8 changed files with 35 additions and 1 deletion.
2 changes: 1 addition & 1 deletion google-cloud-asset-bom/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
<version>0.1.3</version>
</parent>

<name>Google Cloud Core</name>
<name>Google Cloud Asset BOM</name>
<url>https://github.com/googleapis/java-asset</url>
<description>
BOM for Google Cloud Asset
Expand Down
4 changes: 4 additions & 0 deletions grpc-google-cloud-asset-v1/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,10 @@
<groupId>com.google.api.grpc</groupId>
<artifactId>proto-google-cloud-asset-v1</artifactId>
</dependency>
<dependency>
<groupId>com.google.api.grpc</groupId>
<artifactId>proto-google-common-protos</artifactId>
</dependency>
<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
Expand Down
4 changes: 4 additions & 0 deletions grpc-google-cloud-asset-v1beta1/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,10 @@
<groupId>com.google.api.grpc</groupId>
<artifactId>proto-google-cloud-asset-v1beta1</artifactId>
</dependency>
<dependency>
<groupId>com.google.api.grpc</groupId>
<artifactId>proto-google-common-protos</artifactId>
</dependency>
<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
Expand Down
4 changes: 4 additions & 0 deletions grpc-google-cloud-asset-v1p2beta1/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,10 @@
<groupId>com.google.api.grpc</groupId>
<artifactId>proto-google-cloud-asset-v1p2beta1</artifactId>
</dependency>
<dependency>
<groupId>com.google.api.grpc</groupId>
<artifactId>proto-google-common-protos</artifactId>
</dependency>
<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
Expand Down
6 changes: 6 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,7 @@
<google.core.version>1.91.2</google.core.version>
<google.api-common.version>1.8.1</google.api-common.version>
<google.common-protos.version>1.16.0</google.common-protos.version>
<google.iam.version>0.13.0</google.iam.version>
<gax.version>1.49.0</gax.version>
<grpc.version>1.24.0</grpc.version>
<protobuf.version>3.10.0</protobuf.version>
Expand Down Expand Up @@ -151,6 +152,11 @@
<artifactId>proto-google-common-protos</artifactId>
<version>${google.common-protos.version}</version>
</dependency>
<dependency>
<groupId>com.google.api.grpc</groupId>
<artifactId>proto-google-iam-v1</artifactId>
<version>${google.iam.version}</version>
</dependency>
<dependency>
<groupId>org.threeten</groupId>
<artifactId>threetenbp</artifactId>
Expand Down
8 changes: 8 additions & 0 deletions proto-google-cloud-asset-v1/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -29,5 +29,13 @@
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
</dependency>
<dependency>
<groupId>com.google.api.grpc</groupId>
<artifactId>proto-google-iam-v1</artifactId>
</dependency>
<dependency>
<groupId>com.google.api.grpc</groupId>
<artifactId>proto-google-common-protos</artifactId>
</dependency>
</dependencies>
</project>
4 changes: 4 additions & 0 deletions proto-google-cloud-asset-v1beta1/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -29,5 +29,9 @@
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
</dependency>
<dependency>
<groupId>com.google.api.grpc</groupId>
<artifactId>proto-google-iam-v1</artifactId>
</dependency>
</dependencies>
</project>
4 changes: 4 additions & 0 deletions proto-google-cloud-asset-v1p2beta1/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -29,5 +29,9 @@
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
</dependency>
<dependency>
<groupId>com.google.api.grpc</groupId>
<artifactId>proto-google-iam-v1</artifactId>
</dependency>
</dependencies>
</project>

0 comments on commit 6e3d962

Please sign in to comment.