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

Commit

Permalink
feat(v1): add v1 client (#84)
Browse files Browse the repository at this point in the history
Towards #38
  • Loading branch information
chingor13 committed Mar 23, 2020
1 parent 4634e0e commit 876db58
Show file tree
Hide file tree
Showing 59 changed files with 26,299 additions and 8 deletions.
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

0 comments on commit 876db58

Please sign in to comment.