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:
Kun Zhang 2015-04-28 18:14:34 -07:00
parent 69c67042a6
commit 41940f7ff7
5 changed files with 5 additions and 5 deletions

View File

@ -1,5 +1,5 @@
apply plugin: 'application'
apply plugin: 'protobuf'
apply plugin: 'com.google.protobuf'
description = "grpc Benchmarks"

View File

@ -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.

View File

@ -1,5 +1,5 @@
apply plugin: "cpp"
apply plugin: "protobuf"
apply plugin: "com.google.protobuf"
description = 'The protoc plugin for gRPC Java'

View File

@ -1,5 +1,5 @@
apply plugin: 'application'
apply plugin: 'protobuf'
apply plugin: 'com.google.protobuf'
description = "grpc Examples"

View File

@ -1,4 +1,4 @@
apply plugin: 'protobuf'
apply plugin: 'com.google.protobuf'
apply plugin:'application'
description = "gRPC: Integration Testing"