From e412da3dd1b6e184ea13275e66d17701e31b21b8 Mon Sep 17 00:00:00 2001 From: Kun Zhang Date: Thu, 16 Feb 2017 10:25:39 -0800 Subject: [PATCH] Make protobuf dependencies transitive. (#117) Resolves #116 --- .../groovy/com/google/protobuf/gradle/ProtobufPlugin.groovy | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/groovy/com/google/protobuf/gradle/ProtobufPlugin.groovy b/src/main/groovy/com/google/protobuf/gradle/ProtobufPlugin.groovy index 14f14082..8af2a72f 100644 --- a/src/main/groovy/com/google/protobuf/gradle/ProtobufPlugin.groovy +++ b/src/main/groovy/com/google/protobuf/gradle/ProtobufPlugin.groovy @@ -129,7 +129,7 @@ class ProtobufPlugin implements Plugin { if (project.configurations.findByName(configName) == null) { project.configurations.create(configName) { visible = false - transitive = false + transitive = true extendsFrom = [] } }