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

Commit 876db58

Browse files
authored
feat(v1): add v1 client (#84)
Towards #38
1 parent 4634e0e commit 876db58

File tree

59 files changed

+26299
-8
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

59 files changed

+26299
-8
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ If you are using Maven with [BOM][libraries-bom], add this to your pom.xml file
2020
<dependency>
2121
<groupId>com.google.cloud</groupId>
2222
<artifactId>libraries-bom</artifactId>
23-
<version>4.2.0</version>
23+
<version>4.3.0</version>
2424
<type>pom</type>
2525
<scope>import</scope>
2626
</dependency>

google-cloud-recaptchaenterprise-bom/pom.xml

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
<version>0.4.0</version>
1212
</parent>
1313

14-
<name>Google Cloud recaptchaenterprise BOM</name>
14+
<name>Google Cloud reCAPTCHA Enterprise BOM</name>
1515
<url>https://github.com/googleapis/java-recaptchaenterprise</url>
1616
<description>
1717
BOM for reCAPTCHA Enterprise
@@ -66,11 +66,21 @@
6666
<artifactId>google-cloud-recaptchaenterprise</artifactId>
6767
<version>0.29.2-SNAPSHOT</version><!-- {x-version-update:google-cloud-recaptchaenterprise:current} -->
6868
</dependency>
69+
<dependency>
70+
<groupId>com.google.api.grpc</groupId>
71+
<artifactId>proto-google-cloud-recaptchaenterprise-v1</artifactId>
72+
<version>0.29.2-SNAPSHOT</version><!-- {x-version-update:proto-google-cloud-recaptchaenterprise-v1:current} -->
73+
</dependency>
6974
<dependency>
7075
<groupId>com.google.api.grpc</groupId>
7176
<artifactId>proto-google-cloud-recaptchaenterprise-v1beta1</artifactId>
7277
<version>0.29.2-SNAPSHOT</version><!-- {x-version-update:proto-google-cloud-recaptchaenterprise-v1beta1:current} -->
7378
</dependency>
79+
<dependency>
80+
<groupId>com.google.api.grpc</groupId>
81+
<artifactId>grpc-google-cloud-recaptchaenterprise-v1</artifactId>
82+
<version>0.29.2-SNAPSHOT</version><!-- {x-version-update:grpc-google-cloud-recaptchaenterprise-v1:current} -->
83+
</dependency>
7484
<dependency>
7585
<groupId>com.google.api.grpc</groupId>
7686
<artifactId>grpc-google-cloud-recaptchaenterprise-v1beta1</artifactId>

google-cloud-recaptchaenterprise/pom.xml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,10 @@
4242
<artifactId>proto-google-common-protos</artifactId>
4343
</dependency>
4444

45+
<dependency>
46+
<groupId>com.google.api.grpc</groupId>
47+
<artifactId>proto-google-cloud-recaptchaenterprise-v1</artifactId>
48+
</dependency>
4549
<dependency>
4650
<groupId>com.google.api.grpc</groupId>
4751
<artifactId>proto-google-cloud-recaptchaenterprise-v1beta1</artifactId>
@@ -70,6 +74,11 @@
7074
<scope>test</scope>
7175
</dependency>
7276

77+
<dependency>
78+
<groupId>com.google.api.grpc</groupId>
79+
<artifactId>grpc-google-cloud-recaptchaenterprise-v1</artifactId>
80+
<scope>test</scope>
81+
</dependency>
7382
<dependency>
7483
<groupId>com.google.api.grpc</groupId>
7584
<artifactId>grpc-google-cloud-recaptchaenterprise-v1beta1</artifactId>

0 commit comments

Comments
 (0)