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

feat: add v3 client #74

Merged
merged 5 commits into from
Nov 13, 2020
Merged
Show file tree
Hide file tree
Changes from 4 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
10 changes: 10 additions & 0 deletions google-cloud-dialogflow-cx-bom/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -75,11 +75,21 @@
<artifactId>proto-google-cloud-dialogflow-cx-v3beta1</artifactId>
<version>0.3.2-SNAPSHOT</version><!-- {x-version-update:proto-google-cloud-dialogflow-cx-v3beta1:current} -->
</dependency>
<dependency>
<groupId>com.google.api.grpc</groupId>
<artifactId>proto-google-cloud-dialogflow-cx-v3</artifactId>
<version>0.3.2-SNAPSHOT</version><!-- {x-version-update:proto-google-cloud-dialogflow-cx-v3:current} -->
</dependency>
<dependency>
<groupId>com.google.api.grpc</groupId>
<artifactId>grpc-google-cloud-dialogflow-cx-v3beta1</artifactId>
<version>0.3.2-SNAPSHOT</version><!-- {x-version-update:grpc-google-cloud-dialogflow-cx-v3beta1:current} -->
</dependency>
<dependency>
<groupId>com.google.api.grpc</groupId>
<artifactId>grpc-google-cloud-dialogflow-cx-v3</artifactId>
<version>0.3.2-SNAPSHOT</version><!-- {x-version-update:grpc-google-cloud-dialogflow-cx-v3:current} -->
</dependency>
</dependencies>
</dependencyManagement>

Expand Down
9 changes: 9 additions & 0 deletions google-cloud-dialogflow-cx/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,10 @@
<groupId>com.google.api.grpc</groupId>
<artifactId>proto-google-cloud-dialogflow-cx-v3beta1</artifactId>
</dependency>
<dependency>
<groupId>com.google.api.grpc</groupId>
<artifactId>proto-google-cloud-dialogflow-cx-v3</artifactId>
</dependency>
<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
Expand Down Expand Up @@ -81,6 +85,11 @@
<artifactId>grpc-google-cloud-dialogflow-cx-v3beta1</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.google.api.grpc</groupId>
<artifactId>grpc-google-cloud-dialogflow-cx-v3</artifactId>
<scope>test</scope>
</dependency>
<!-- Need testing utility classes for generated gRPC clients tests -->
<dependency>
<groupId>com.google.api</groupId>
Expand Down
Loading