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

Commit e33500c

Browse files
authored
feat: add DateTime/TimeOfDay protos (#1)
1 parent 5db1f39 commit e33500c

File tree

251 files changed

+70662
-32619
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

251 files changed

+70662
-32619
lines changed

.gitignore

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,4 +14,4 @@ target/
1414
*.pyc
1515
__pycache__
1616

17-
.flattenend-pom.xml
17+
.flattened-pom.xml

grpc-google-common-protos/pom.xml

+18-2
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@
88
<name>grpc-google-common-protos</name>
99
<description>GRPC library for grpc-google-common-protos</description>
1010
<parent>
11-
<groupId>com.google.cloud</groupId>
12-
<artifactId>google-iam-parent</artifactId>
11+
<groupId>com.google.api.grpc</groupId>
12+
<artifactId>google-common-protos-parent</artifactId>
1313
<version>1.17.1-SNAPSHOT</version><!-- {x-version-update:proto-google-common-protos:current} -->
1414
</parent>
1515
<dependencies>
@@ -47,4 +47,20 @@
4747
</plugin>
4848
</plugins>
4949
</build>
50+
51+
<profiles>
52+
<profile>
53+
<id>java9</id>
54+
<activation>
55+
<jdk>[9,)</jdk>
56+
</activation>
57+
<dependencies>
58+
<dependency>
59+
<groupId>javax.annotation</groupId>
60+
<artifactId>javax.annotation-api</artifactId>
61+
<version>1.3.2</version>
62+
</dependency>
63+
</dependencies>
64+
</profile>
65+
</profiles>
5066
</project>

grpc-google-common-protos/src/main/java/com/google/longrunning/OperationsGrpc.java

+437-327
Large diffs are not rendered by default.

pom.xml

+7-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
<?xml version='1.0' encoding='UTF-8'?>
22
<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">
33
<modelVersion>4.0.0</modelVersion>
4-
<groupId>com.google.cloud</groupId>
5-
<artifactId>google-iam-parent</artifactId>
4+
<groupId>com.google.api.grpc</groupId>
5+
<artifactId>google-common-protos-parent</artifactId>
66
<packaging>pom</packaging>
77
<version>1.17.1-SNAPSHOT</version><!-- {x-version-update:proto-google-common-protos:current} -->
88
<name>Google Common Protos Parent</name>
@@ -96,6 +96,11 @@
9696
<artifactId>guava</artifactId>
9797
<version>${guava.version}</version>
9898
</dependency>
99+
<dependency>
100+
<groupId>javax.annotation</groupId>
101+
<artifactId>javax.annotation-api</artifactId>
102+
<version>1.3.2</version>
103+
</dependency>
99104

100105
<dependency>
101106
<groupId>junit</groupId>

proto-google-common-protos/pom.xml

+2-2
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@
88
<name>proto-google-common-protos</name>
99
<description>PROTO library for proto-google-common-protos</description>
1010
<parent>
11-
<groupId>com.google.cloud</groupId>
12-
<artifactId>google-iam-parent</artifactId>
11+
<groupId>com.google.api.grpc</groupId>
12+
<artifactId>google-common-protos-parent</artifactId>
1313
<version>1.17.1-SNAPSHOT</version><!-- {x-version-update:proto-google-common-protos:current} -->
1414
</parent>
1515
<dependencies>

0 commit comments

Comments
 (0)