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

feat: add v1alpha and v1beta clients #287

Merged
merged 6 commits into from
May 31, 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.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .github/.OwlBot.lock.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
docker:
digest: sha256:ee698481139bf3df35cd83d2f17f9670ee914d6184f8909a81d672a6abaf0e72
image: gcr.io/repo-automation-bots/owlbot-java:latest
29 changes: 29 additions & 0 deletions .github/.OwlBot.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
# Copyright 2021 Google LLC
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.

docker:
image: "gcr.io/repo-automation-bots/owlbot-java:latest"

deep-remove-regex:
- "/grpc-google-.*/src"
- "/proto-google-.*/src"
- "/google-.*/src"

deep-copy-regex:
- source: "/google/cloud/osconfig/(v.*)/.*-java/proto-google-.*/src"
dest: "/owl-bot-staging/$1/proto-google-cloud-os-config-$1/src"
- source: "/google/cloud/osconfig/(v.*)/.*-java/grpc-google-.*/src"
dest: "/owl-bot-staging/$1/grpc-google-cloud-os-config-$1/src"
- source: "/google/cloud/osconfig/(v.*)/.*-java/gapic-google-.*/src"
dest: "/owl-bot-staging/$1/google-cloud-os-config/src"
29 changes: 24 additions & 5 deletions google-cloud-os-config-bom/pom.xml
Original file line number Diff line number Diff line change
@@ -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 @@ -60,21 +60,40 @@

<dependencyManagement>
<dependencies>

<dependency>
<groupId>com.google.cloud</groupId>
<artifactId>google-cloud-os-config</artifactId>
<version>1.2.4-SNAPSHOT</version><!-- {x-version-update:google-cloud-os-config:current} -->
</dependency>
<dependency>
<groupId>com.google.api.grpc</groupId>
<artifactId>grpc-google-cloud-os-config-v1</artifactId>
<version>1.2.4-SNAPSHOT</version><!-- {x-version-update:grpc-google-cloud-os-config-v1:current} -->
</dependency>
<dependency>
<groupId>com.google.api.grpc</groupId>
<artifactId>grpc-google-cloud-os-config-v1beta</artifactId>
<version>1.2.4-SNAPSHOT</version><!-- {x-version-update:grpc-google-cloud-os-config-v1beta:current} -->
</dependency>
<dependency>
<groupId>com.google.api.grpc</groupId>
<artifactId>grpc-google-cloud-os-config-v1alpha</artifactId>
<version>1.2.4-SNAPSHOT</version><!-- {x-version-update:grpc-google-cloud-os-config-v1alpha:current} -->
</dependency>
<dependency>
<groupId>com.google.api.grpc</groupId>
<artifactId>proto-google-cloud-os-config-v1</artifactId>
<version>1.2.4-SNAPSHOT</version><!-- {x-version-update:proto-google-cloud-os-config-v1:current} -->
</dependency>
<dependency>
<groupId>com.google.api.grpc</groupId>
<artifactId>grpc-google-cloud-os-config-v1</artifactId>
<version>1.2.4-SNAPSHOT</version><!-- {x-version-update:grpc-google-cloud-os-config-v1:current} -->
<artifactId>proto-google-cloud-os-config-v1alpha</artifactId>
<version>1.2.4-SNAPSHOT</version><!-- {x-version-update:proto-google-cloud-os-config-v1alpha:current} -->
</dependency>
<dependency>
<groupId>com.google.api.grpc</groupId>
<artifactId>proto-google-cloud-os-config-v1beta</artifactId>
<version>1.2.4-SNAPSHOT</version><!-- {x-version-update:proto-google-cloud-os-config-v1beta:current} -->
</dependency>
</dependencies>
</dependencyManagement>
Expand All @@ -90,4 +109,4 @@
</plugin>
</plugins>
</build>
</project>
</project>
24 changes: 18 additions & 6 deletions google-cloud-os-config/pom.xml
Original file line number Diff line number Diff line change
@@ -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,14 @@
<artifactId>proto-google-common-protos</artifactId>
</dependency>

<dependency>
<groupId>com.google.api.grpc</groupId>
<artifactId>proto-google-cloud-os-config-v1beta</artifactId>
</dependency>
<dependency>
<groupId>com.google.api.grpc</groupId>
<artifactId>proto-google-cloud-os-config-v1alpha</artifactId>
</dependency>
<dependency>
<groupId>com.google.api.grpc</groupId>
<artifactId>proto-google-cloud-os-config-v1</artifactId>
Expand Down Expand Up @@ -70,14 +78,18 @@
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.google.cloud</groupId>
<artifactId>google-cloud-core</artifactId>
<groupId>com.google.api.grpc</groupId>
<artifactId>grpc-google-cloud-os-config-v1</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.google.api.grpc</groupId>
<artifactId>grpc-google-cloud-os-config-v1alpha</artifactId>
<scope>test</scope>
</dependency>

<dependency>
<groupId>com.google.api.grpc</groupId>
<artifactId>grpc-google-cloud-os-config-v1</artifactId>
<artifactId>grpc-google-cloud-os-config-v1beta</artifactId>
<scope>test</scope>
</dependency>
<!-- Need testing utility classes for generated gRPC clients tests -->
Expand Down Expand Up @@ -112,4 +124,4 @@
</plugin>
</plugins>
</build>
</project>
</project>
Loading