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

Commit

Permalink
feat: initial generation
Browse files Browse the repository at this point in the history
  • Loading branch information
Neenu1995 committed Apr 28, 2021
1 parent 9db56bd commit 9492b30
Show file tree
Hide file tree
Showing 103 changed files with 70,521 additions and 7 deletions.
6 changes: 3 additions & 3 deletions .github/.OwlBot.yaml
Expand Up @@ -21,9 +21,9 @@ deep-remove-regex:
- "/google-.*/src"

deep-copy-regex:
- source: "//google/cloud/dms/(v.*)/.*-java/proto-google-.*/src"
- source: "/google/cloud/clouddms/(v.*)/.*-java/proto-google-.*/src"
dest: "/owl-bot-staging/$1/proto-google-cloud-dms-$1/src"
- source: "//google/cloud/dms/(v.*)/.*-java/grpc-google-.*/src"
- source: "/google/cloud/clouddms/(v.*)/.*-java/grpc-google-.*/src"
dest: "/owl-bot-staging/$1/grpc-google-cloud-dms-$1/src"
- source: "//google/cloud/dms/(v.*)/.*-java/gapic-google-.*/src"
- source: "/google/cloud/clouddms/(v.*)/.*-java/gapic-google-.*/src"
dest: "/owl-bot-staging/$1/google-cloud-dms/src"
12 changes: 11 additions & 1 deletion google-cloud-dms-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 @@ -58,6 +58,16 @@
<artifactId>google-cloud-dms</artifactId>
<version>0.0.1-SNAPSHOT</version><!-- {x-version-update:google-cloud-dms:current} -->
</dependency>
<dependency>
<groupId>com.google.api.grpc</groupId>
<artifactId>grpc-google-cloud-dms-v1</artifactId>
<version>0.0.1-SNAPSHOT</version><!-- {x-version-update:grpc-google-cloud-dms-v1:current} -->
</dependency>
<dependency>
<groupId>com.google.api.grpc</groupId>
<artifactId>proto-google-cloud-dms-v1</artifactId>
<version>0.0.1-SNAPSHOT</version><!-- {x-version-update:proto-google-cloud-dms-v1:current} -->
</dependency>
</dependencies>
</dependencyManagement>

Expand Down
13 changes: 11 additions & 2 deletions google-cloud-dms/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 All @@ -17,6 +17,11 @@
<site.installationModule>google-cloud-dms</site.installationModule>
</properties>
<dependencies>
<dependency>
<groupId>com.google.api.grpc</groupId>
<artifactId>grpc-google-cloud-dms-v1</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>io.grpc</groupId>
<artifactId>grpc-api</artifactId>
Expand All @@ -42,6 +47,10 @@
<artifactId>proto-google-common-protos</artifactId>
</dependency>

<dependency>
<groupId>com.google.api.grpc</groupId>
<artifactId>proto-google-cloud-dms-v1</artifactId>
</dependency>
<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
Expand Down Expand Up @@ -99,4 +108,4 @@
</plugin>
</plugins>
</build>
</project>
</project>

0 comments on commit 9492b30

Please sign in to comment.