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

Commit

Permalink
feat(v1beta3): add v1beta3 client (#191)
Browse files Browse the repository at this point in the history
* feat(v1beta3): add v1beta3 client

* deps: fix dependency declarations
  • Loading branch information
chingor13 committed Oct 1, 2020
1 parent 1a8da37 commit 7e11d08
Show file tree
Hide file tree
Showing 52 changed files with 82,191 additions and 95 deletions.
2 changes: 1 addition & 1 deletion README.md
Expand Up @@ -41,7 +41,7 @@ If you are using Maven without BOM, add this to your dependencies:
<dependency>
<groupId>com.google.cloud</groupId>
<artifactId>google-cloud-document-ai</artifactId>
<version>0.2.1</version>
<version>0.2.4</version>
</dependency>

```
Expand Down
186 changes: 98 additions & 88 deletions google-cloud-document-ai-bom/pom.xml
@@ -1,100 +1,110 @@
<?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>
<modelVersion>4.0.0</modelVersion>
<groupId>com.google.cloud</groupId>
<artifactId>google-cloud-document-ai-bom</artifactId>
<version>0.2.5-SNAPSHOT</version> <!-- {x-version-update:google-cloud-document-ai:current} -->
<packaging>pom</packaging>
<parent>
<groupId>com.google.cloud</groupId>
<artifactId>google-cloud-document-ai-bom</artifactId>
<version>0.2.5-SNAPSHOT</version> <!-- {x-version-update:google-cloud-document-ai:current} -->
<packaging>pom</packaging>
<parent>
<groupId>com.google.cloud</groupId>
<artifactId>google-cloud-shared-config</artifactId>
<version>0.9.2</version>
</parent>
<artifactId>google-cloud-shared-config</artifactId>
<version>0.9.2</version>
</parent>

<name>Google Cloud Document AI BOM</name>
<url>https://github.com/googleapis/java-document-ai</url>
<description>BOM for Google Cloud Document AI</description>
<name>Google Cloud Document AI BOM</name>
<url>https://github.com/googleapis/java-document-ai</url>
<description>BOM for Google Cloud Document AI</description>

<organization>
<name>Google LLC</name>
</organization>
<organization>
<name>Google LLC</name>
</organization>

<developers>
<developer>
<id>chingor13</id>
<name>Jeff Ching</name>
<email>chingor@google.com</email>
<organization>Google LLC</organization>
<roles>
<role>Developer</role>
</roles>
</developer>
</developers>
<developers>
<developer>
<id>chingor13</id>
<name>Jeff Ching</name>
<email>chingor@google.com</email>
<organization>Google LLC</organization>
<roles>
<role>Developer</role>
</roles>
</developer>
</developers>

<scm>
<connection>scm:git:https://github.com/googleapis/java-document-ai.git</connection>
<developerConnection>scm:git:git@github.com:googleapis/java-document-ai.git</developerConnection>
<url>https://github.com/googleapis/java-document-ai</url>
</scm>
<scm>
<connection>scm:git:https://github.com/googleapis/java-document-ai.git</connection>
<developerConnection>scm:git:git@github.com:googleapis/java-document-ai.git</developerConnection>
<url>https://github.com/googleapis/java-document-ai</url>
</scm>

<distributionManagement>
<snapshotRepository>
<id>sonatype-nexus-snapshots</id>
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
</snapshotRepository>
<repository>
<id>sonatype-nexus-staging</id>
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
</repository>
</distributionManagement>
<distributionManagement>
<snapshotRepository>
<id>sonatype-nexus-snapshots</id>
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
</snapshotRepository>
<repository>
<id>sonatype-nexus-staging</id>
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
</repository>
</distributionManagement>

<licenses>
<license>
<name>The Apache Software License, Version 2.0</name>
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
<distribution>repo</distribution>
</license>
</licenses>
<licenses>
<license>
<name>The Apache Software License, Version 2.0</name>
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
<distribution>repo</distribution>
</license>
</licenses>

<dependencyManagement>
<dependencies>
<dependency>
<groupId>com.google.api.grpc</groupId>
<artifactId>proto-google-cloud-document-ai-v1beta1</artifactId>
<version>0.2.5-SNAPSHOT</version> <!-- {x-version-update:proto-google-cloud-document-ai-v1beta1:current} -->
</dependency>
<dependency>
<groupId>com.google.api.grpc</groupId>
<artifactId>proto-google-cloud-document-ai-v1beta2</artifactId>
<version>0.2.5-SNAPSHOT</version> <!-- {x-version-update:proto-google-cloud-document-ai-v1beta2:current} -->
</dependency>
<dependency>
<groupId>com.google.api.grpc</groupId>
<artifactId>grpc-google-cloud-document-ai-v1beta1</artifactId>
<version>0.2.5-SNAPSHOT</version> <!-- {x-version-update:grpc-google-cloud-document-ai-v1beta1:current} -->
</dependency>
<dependency>
<groupId>com.google.api.grpc</groupId>
<artifactId>grpc-google-cloud-document-ai-v1beta2</artifactId>
<version>0.2.5-SNAPSHOT</version> <!-- {x-version-update:grpc-google-cloud-document-ai-v1beta2:current} -->
</dependency>
<dependency>
<groupId>com.google.cloud</groupId>
<artifactId>google-cloud-document-ai</artifactId>
<version>0.2.5-SNAPSHOT</version> <!-- {x-version-update:google-cloud-document-ai:current} -->
</dependency>
</dependencies>
</dependencyManagement>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>com.google.api.grpc</groupId>
<artifactId>proto-google-cloud-document-ai-v1beta1</artifactId>
<version>0.2.5-SNAPSHOT</version> <!-- {x-version-update:proto-google-cloud-document-ai-v1beta1:current} -->
</dependency>
<dependency>
<groupId>com.google.api.grpc</groupId>
<artifactId>proto-google-cloud-document-ai-v1beta2</artifactId>
<version>0.2.5-SNAPSHOT</version> <!-- {x-version-update:proto-google-cloud-document-ai-v1beta2:current} -->
</dependency>
<dependency>
<groupId>com.google.api.grpc</groupId>
<artifactId>proto-google-cloud-document-ai-v1beta3</artifactId>
<version>0.2.5-SNAPSHOT</version> <!-- {x-version-update:proto-google-cloud-document-ai-v1beta3:current} -->
</dependency>
<dependency>
<groupId>com.google.api.grpc</groupId>
<artifactId>grpc-google-cloud-document-ai-v1beta1</artifactId>
<version>0.2.5-SNAPSHOT</version> <!-- {x-version-update:grpc-google-cloud-document-ai-v1beta1:current} -->
</dependency>
<dependency>
<groupId>com.google.api.grpc</groupId>
<artifactId>grpc-google-cloud-document-ai-v1beta2</artifactId>
<version>0.2.5-SNAPSHOT</version> <!-- {x-version-update:grpc-google-cloud-document-ai-v1beta2:current} -->
</dependency>
<dependency>
<groupId>com.google.api.grpc</groupId>
<artifactId>grpc-google-cloud-document-ai-v1beta3</artifactId>
<version>0.2.5-SNAPSHOT</version> <!-- {x-version-update:grpc-google-cloud-document-ai-v1beta3:current} -->
</dependency>
<dependency>
<groupId>com.google.cloud</groupId>
<artifactId>google-cloud-document-ai</artifactId>
<version>0.2.5-SNAPSHOT</version> <!-- {x-version-update:google-cloud-document-ai:current} -->
</dependency>
</dependencies>
</dependencyManagement>

<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-checkstyle-plugin</artifactId>
<configuration>
<skip>true</skip>
</configuration>
</plugin>
</plugins>
</build>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-checkstyle-plugin</artifactId>
<configuration>
<skip>true</skip>
</configuration>
</plugin>
</plugins>
</build>
</project>
9 changes: 9 additions & 0 deletions google-cloud-document-ai/pom.xml
Expand Up @@ -50,6 +50,10 @@
<groupId>com.google.api.grpc</groupId>
<artifactId>proto-google-cloud-document-ai-v1beta2</artifactId>
</dependency>
<dependency>
<groupId>com.google.api.grpc</groupId>
<artifactId>proto-google-cloud-document-ai-v1beta3</artifactId>
</dependency>
<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
Expand Down Expand Up @@ -83,6 +87,11 @@
<artifactId>grpc-google-cloud-document-ai-v1beta2</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.google.api.grpc</groupId>
<artifactId>grpc-google-cloud-document-ai-v1beta3</artifactId>
<scope>test</scope>
</dependency>

<!-- Need testing utility classes for generated gRPC clients tests -->
<dependency>
Expand Down

0 comments on commit 7e11d08

Please sign in to comment.