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

feat: add v1 client #119

Merged
merged 2 commits into from May 26, 2021
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 .repo-metadata.json
Expand Up @@ -4,7 +4,7 @@
"product_documentation": "https://cloud.google.com/workflows",
"api_description": "allows you to ochestrate and automate Google Cloud and HTTP-based API services with serverless workflows.",
"client_documentation": "https://googleapis.dev/java/google-cloud-workflow-executions/latest/index.html",
"release_level": "beta",
"release_level": "ga",
"transport": "grpc",
"language": "java",
"repo": "googleapis/java-workflow-executions",
Expand Down
19 changes: 14 additions & 5 deletions google-cloud-workflow-executions-bom/pom.xml
@@ -1,4 +1,4 @@
<?xml version="1.0"?>
<?xml version='1.0' encoding='UTF-8'?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>com.google.cloud</groupId>
Expand Down Expand Up @@ -64,21 +64,30 @@

<dependencyManagement>
<dependencies>

<dependency>
<groupId>com.google.cloud</groupId>
<artifactId>google-cloud-workflow-executions</artifactId>
<version>0.1.9-SNAPSHOT</version><!-- {x-version-update:google-cloud-workflow-executions:current} -->
</dependency>
<dependency>
<groupId>com.google.api.grpc</groupId>
<artifactId>grpc-google-cloud-workflow-executions-v1beta</artifactId>
<version>0.1.9-SNAPSHOT</version><!-- {x-version-update:grpc-google-cloud-workflow-executions-v1beta:current} -->
</dependency>
<dependency>
<groupId>com.google.api.grpc</groupId>
<artifactId>grpc-google-cloud-workflow-executions-v1</artifactId>
<version>0.1.9-SNAPSHOT</version><!-- {x-version-update:grpc-google-cloud-workflow-executions-v1:current} -->
</dependency>
<dependency>
<groupId>com.google.api.grpc</groupId>
<artifactId>proto-google-cloud-workflow-executions-v1beta</artifactId>
<version>0.1.9-SNAPSHOT</version><!-- {x-version-update:proto-google-cloud-workflow-executions-v1beta:current} -->
</dependency>
<dependency>
<groupId>com.google.api.grpc</groupId>
<artifactId>grpc-google-cloud-workflow-executions-v1beta</artifactId>
<version>0.1.9-SNAPSHOT</version><!-- {x-version-update:grpc-google-cloud-workflow-executions-v1beta:current} -->
<artifactId>proto-google-cloud-workflow-executions-v1</artifactId>
<version>0.1.9-SNAPSHOT</version><!-- {x-version-update:proto-google-cloud-workflow-executions-v1:current} -->
</dependency>
</dependencies>
</dependencyManagement>
Expand All @@ -94,4 +103,4 @@
</plugin>
</plugins>
</build>
</project>
</project>
13 changes: 11 additions & 2 deletions google-cloud-workflow-executions/pom.xml
@@ -1,4 +1,4 @@
<?xml version="1.0"?>
<?xml version='1.0' encoding='UTF-8'?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>com.google.cloud</groupId>
Expand Down Expand Up @@ -42,6 +42,10 @@
<artifactId>proto-google-common-protos</artifactId>
</dependency>

<dependency>
<groupId>com.google.api.grpc</groupId>
<artifactId>proto-google-cloud-workflow-executions-v1</artifactId>
</dependency>
<dependency>
<groupId>com.google.api.grpc</groupId>
<artifactId>proto-google-cloud-workflow-executions-v1beta</artifactId>
Expand Down Expand Up @@ -72,6 +76,11 @@
<artifactId>grpc-google-cloud-workflow-executions-v1beta</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.google.api.grpc</groupId>
<artifactId>grpc-google-cloud-workflow-executions-v1</artifactId>
<scope>test</scope>
</dependency>
<!-- Need testing utility classes for generated gRPC clients tests -->
<dependency>
<groupId>com.google.api</groupId>
Expand Down Expand Up @@ -104,4 +113,4 @@
</plugin>
</plugins>
</build>
</project>
</project>