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

Commit

Permalink
chore: Migrate iot synth.py to bazel (#90)
Browse files Browse the repository at this point in the history
173dcae
commit 173dcae
Author: Vadym Matsishevskyi <25311427+vam-google@users.noreply.github.com>
Date:   Thu Mar 19 22:29:06 2020 -0700

    chore: Migrate iot synth.py to bazel (#90)

    The changes in grpc stubs are caused by the gRPC upgrade from 1.10 (more than a year old) to 1.27 (same version which is used as runtime dependency)
  • Loading branch information
yoshi-automation committed Mar 26, 2020
1 parent 92b3bd5 commit a45e5e4
Show file tree
Hide file tree
Showing 6 changed files with 250 additions and 462 deletions.
6 changes: 4 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,18 +17,19 @@ 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.3.0</version>
<version>4.2.0</version>
<type>pom</type>
<scope>import</scope>
</dependency>
</dependencies>
</dependencyManagement>

<dependencies>
<dependency>
<groupId>com.google.cloud</groupId>
<artifactId>google-cloud-iot</artifactId>
</dependency>
</dependencies>

```

[//]: # ({x-version-update-start:google-cloud-iot:released})
Expand All @@ -41,6 +42,7 @@ If you are using Maven without BOM, add this to your dependencies:
<artifactId>google-cloud-iot</artifactId>
<version>1.0.0</version>
</dependency>

```

If you are using Gradle, add this to your dependencies
Expand Down
10 changes: 10 additions & 0 deletions grpc-google-cloud-iot-v1/clirr-ignored-differences.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
<?xml version="1.0" encoding="UTF-8"?>
<!-- see http://www.mojohaus.org/clirr-maven-plugin/examples/ignored-differences.html -->
<differences>
<difference>
<!-- TODO: remove after 1.0.1 released -->
<differenceType>6001</differenceType>
<className>com/google/cloud/iot/v1/*Grpc</className>
<field>METHOD_*</field>
</difference>
</differences>

0 comments on commit a45e5e4

Please sign in to comment.