Fix grpc-compiler build.
diff --git a/compiler/build.gradle b/compiler/build.gradle
index fa77d34..b65e058 100644
--- a/compiler/build.gradle
+++ b/compiler/build.gradle
@@ -170,7 +170,7 @@
 
 task buildArtifacts(type: Copy) {
   dependsOn 'java_pluginExecutable'
-  from("$buildDir/binaries") {
+  from("$buildDir/exe") {
     if (osdetector.os != 'windows') {
       rename 'protoc-gen-grpc-java', '$0.exe'
     }
@@ -181,7 +181,7 @@
 archivesBaseName = "$protocPluginBaseName"
 
 artifacts {
-  archives("$artifactStagingPath/java_pluginExecutable/${protocPluginBaseName}.exe" as File) {
+  archives("$artifactStagingPath/java_plugin/${protocPluginBaseName}.exe" as File) {
     classifier osdetector.os + "-" + arch
     type "exe"
     extension "exe"