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

feat(v1): add v1 client #84

Merged
merged 1 commit into from Mar 23, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Expand Up @@ -20,7 +20,7 @@ If you are using Maven with [BOM][libraries-bom], add this to your pom.xml file
<dependency>
<groupId>com.google.cloud</groupId>
<artifactId>libraries-bom</artifactId>
<version>4.2.0</version>
<version>4.3.0</version>
<type>pom</type>
<scope>import</scope>
</dependency>
Expand Down
12 changes: 11 additions & 1 deletion google-cloud-recaptchaenterprise-bom/pom.xml
Expand Up @@ -11,7 +11,7 @@
<version>0.4.0</version>
</parent>

<name>Google Cloud recaptchaenterprise BOM</name>
<name>Google Cloud reCAPTCHA Enterprise BOM</name>
<url>https://github.com/googleapis/java-recaptchaenterprise</url>
<description>
BOM for reCAPTCHA Enterprise
Expand Down Expand Up @@ -66,11 +66,21 @@
<artifactId>google-cloud-recaptchaenterprise</artifactId>
<version>0.29.2-SNAPSHOT</version><!-- {x-version-update:google-cloud-recaptchaenterprise:current} -->
</dependency>
<dependency>
<groupId>com.google.api.grpc</groupId>
<artifactId>proto-google-cloud-recaptchaenterprise-v1</artifactId>
<version>0.29.2-SNAPSHOT</version><!-- {x-version-update:proto-google-cloud-recaptchaenterprise-v1:current} -->
</dependency>
<dependency>
<groupId>com.google.api.grpc</groupId>
<artifactId>proto-google-cloud-recaptchaenterprise-v1beta1</artifactId>
<version>0.29.2-SNAPSHOT</version><!-- {x-version-update:proto-google-cloud-recaptchaenterprise-v1beta1:current} -->
</dependency>
<dependency>
<groupId>com.google.api.grpc</groupId>
<artifactId>grpc-google-cloud-recaptchaenterprise-v1</artifactId>
<version>0.29.2-SNAPSHOT</version><!-- {x-version-update:grpc-google-cloud-recaptchaenterprise-v1:current} -->
</dependency>
<dependency>
<groupId>com.google.api.grpc</groupId>
<artifactId>grpc-google-cloud-recaptchaenterprise-v1beta1</artifactId>
Expand Down
9 changes: 9 additions & 0 deletions google-cloud-recaptchaenterprise/pom.xml
Expand Up @@ -42,6 +42,10 @@
<artifactId>proto-google-common-protos</artifactId>
</dependency>

<dependency>
<groupId>com.google.api.grpc</groupId>
<artifactId>proto-google-cloud-recaptchaenterprise-v1</artifactId>
</dependency>
<dependency>
<groupId>com.google.api.grpc</groupId>
<artifactId>proto-google-cloud-recaptchaenterprise-v1beta1</artifactId>
Expand Down Expand Up @@ -70,6 +74,11 @@
<scope>test</scope>
</dependency>

<dependency>
<groupId>com.google.api.grpc</groupId>
<artifactId>grpc-google-cloud-recaptchaenterprise-v1</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.google.api.grpc</groupId>
<artifactId>grpc-google-cloud-recaptchaenterprise-v1beta1</artifactId>
Expand Down