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

Commit

Permalink
feat: add DateTime/TimeOfDay protos (#1)
Browse files Browse the repository at this point in the history
  • Loading branch information
chingor13 committed May 4, 2020
1 parent 5db1f39 commit e33500c
Show file tree
Hide file tree
Showing 251 changed files with 70,662 additions and 32,619 deletions.
2 changes: 1 addition & 1 deletion .gitignore
Expand Up @@ -14,4 +14,4 @@ target/
*.pyc
__pycache__

.flattenend-pom.xml
.flattened-pom.xml
20 changes: 18 additions & 2 deletions grpc-google-common-protos/pom.xml
Expand Up @@ -8,8 +8,8 @@
<name>grpc-google-common-protos</name>
<description>GRPC library for grpc-google-common-protos</description>
<parent>
<groupId>com.google.cloud</groupId>
<artifactId>google-iam-parent</artifactId>
<groupId>com.google.api.grpc</groupId>
<artifactId>google-common-protos-parent</artifactId>
<version>1.17.1-SNAPSHOT</version><!-- {x-version-update:proto-google-common-protos:current} -->
</parent>
<dependencies>
Expand Down Expand Up @@ -47,4 +47,20 @@
</plugin>
</plugins>
</build>

<profiles>
<profile>
<id>java9</id>
<activation>
<jdk>[9,)</jdk>
</activation>
<dependencies>
<dependency>
<groupId>javax.annotation</groupId>
<artifactId>javax.annotation-api</artifactId>
<version>1.3.2</version>
</dependency>
</dependencies>
</profile>
</profiles>
</project>

Large diffs are not rendered by default.

9 changes: 7 additions & 2 deletions pom.xml
@@ -1,8 +1,8 @@
<?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>
<artifactId>google-iam-parent</artifactId>
<groupId>com.google.api.grpc</groupId>
<artifactId>google-common-protos-parent</artifactId>
<packaging>pom</packaging>
<version>1.17.1-SNAPSHOT</version><!-- {x-version-update:proto-google-common-protos:current} -->
<name>Google Common Protos Parent</name>
Expand Down Expand Up @@ -96,6 +96,11 @@
<artifactId>guava</artifactId>
<version>${guava.version}</version>
</dependency>
<dependency>
<groupId>javax.annotation</groupId>
<artifactId>javax.annotation-api</artifactId>
<version>1.3.2</version>
</dependency>

<dependency>
<groupId>junit</groupId>
Expand Down
4 changes: 2 additions & 2 deletions proto-google-common-protos/pom.xml
Expand Up @@ -8,8 +8,8 @@
<name>proto-google-common-protos</name>
<description>PROTO library for proto-google-common-protos</description>
<parent>
<groupId>com.google.cloud</groupId>
<artifactId>google-iam-parent</artifactId>
<groupId>com.google.api.grpc</groupId>
<artifactId>google-common-protos-parent</artifactId>
<version>1.17.1-SNAPSHOT</version><!-- {x-version-update:proto-google-common-protos:current} -->
</parent>
<dependencies>
Expand Down

0 comments on commit e33500c

Please sign in to comment.