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

Bump grpc-java version. #61

Merged
merged 2 commits into from
Sep 18, 2015
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
22 changes: 19 additions & 3 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@
<dependency>
<groupId>io.grpc</groupId>
<artifactId>grpc-all</artifactId>
<version>0.8.0</version>
<version>0.9.0</version>
</dependency>

<!-- Used to test the custom builder logic -->
Expand Down Expand Up @@ -253,9 +253,9 @@
protobuf-java directly, you will be transitively depending on the
protobuf-java version that grpc depends on.
-->
<protocArtifact>com.google.protobuf:protoc:3.0.0-alpha-3.1:exe:${os.detected.classifier}</protocArtifact>
<protocArtifact>com.google.protobuf:protoc:3.0.0-beta-1:exe:${os.detected.classifier}</protocArtifact>
<pluginId>grpc-java</pluginId>
<pluginArtifact>io.grpc:protoc-gen-grpc-java:0.8.0:exe:${os.detected.classifier}</pluginArtifact>
<pluginArtifact>io.grpc:protoc-gen-grpc-java:0.9.0:exe:${os.detected.classifier}</pluginArtifact>
</configuration>
<executions>
<execution>
Expand All @@ -268,6 +268,22 @@
</executions>
</plugin>
</plugins>

<pluginManagement>
<plugins>
<!--
Use a newer version of the plugin to avoid long build times on
machines with slow Unix group lookups
https://www.mail-archive.com/issues@maven.apache.org/msg95302.html
-->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<version>2.6</version>
</plugin>
</plugins>
</pluginManagement>

</build>

<properties>
Expand Down
51 changes: 21 additions & 30 deletions src/main/java/com/google/api/CustomHttpPattern.java

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading