From b55b200408ad3f334da7c7c96282389b85082655 Mon Sep 17 00:00:00 2001 From: Eric Anderson Date: Thu, 12 Feb 2015 17:54:48 -0800 Subject: [PATCH] Add missing dependency to benchmarks project --- benchmarks/build.gradle | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/benchmarks/build.gradle b/benchmarks/build.gradle index 0b688d2837..10a843fbd8 100644 --- a/benchmarks/build.gradle +++ b/benchmarks/build.gradle @@ -26,7 +26,7 @@ dependencies { } protobufCodeGenPlugins = ["java_plugin:$rootDir/compiler/build/binaries/java_pluginExecutable/java_plugin"] -compileJava.dependsOn = ['generateProto'] +generateProto.dependsOn ':grpc-compiler:java_pluginExecutable' // Allow execution of test client and server. task execute(dependsOn: classes, type:JavaExec) {