mirror of https://github.com/grpc/grpc-java.git
Upgrade to protobuf plugin 0.3.1
The plugin has been published on plugins.gradle.org Conforming to the Gradle standard that plugin IDs must be name-spaced, the plugin ID has been changed to com.google.protobuf.
This commit is contained in:
parent
69c67042a6
commit
41940f7ff7
|
|
@ -1,5 +1,5 @@
|
|||
apply plugin: 'application'
|
||||
apply plugin: 'protobuf'
|
||||
apply plugin: 'com.google.protobuf'
|
||||
|
||||
|
||||
description = "grpc Benchmarks"
|
||||
|
|
|
|||
|
|
@ -47,7 +47,7 @@ subprojects {
|
|||
okhttp: 'com.squareup.okhttp:okhttp:2.2.0',
|
||||
protobuf: 'com.google.protobuf:protobuf-java:3.0.0-alpha-2',
|
||||
protobuf_nano: 'com.google.protobuf.nano:protobuf-javanano:3.0.0-alpha-2',
|
||||
protobuf_plugin: 'com.google.protobuf:protobuf-gradle-plugin:0.2.1',
|
||||
protobuf_plugin: 'com.google.protobuf:protobuf-gradle-plugin:0.3.1',
|
||||
|
||||
// TODO: Unreleased dependencies.
|
||||
// These must already be installed in the local maven repository.
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
apply plugin: "cpp"
|
||||
apply plugin: "protobuf"
|
||||
apply plugin: "com.google.protobuf"
|
||||
|
||||
description = 'The protoc plugin for gRPC Java'
|
||||
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
apply plugin: 'application'
|
||||
apply plugin: 'protobuf'
|
||||
apply plugin: 'com.google.protobuf'
|
||||
|
||||
description = "grpc Examples"
|
||||
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
apply plugin: 'protobuf'
|
||||
apply plugin: 'com.google.protobuf'
|
||||
apply plugin:'application'
|
||||
|
||||
description = "gRPC: Integration Testing"
|
||||
|
|
|
|||
Loading…
Reference in New Issue