Skip to content

Commit 2465275

Browse files
committed
Fix change detection for compiler testing
1 parent 6ab27ab commit 2465275

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

compiler/build.gradle

+4-1
Original file line numberDiff line numberDiff line change
@@ -152,7 +152,10 @@ protobuf {
152152
}
153153
}
154154
generateProtoTasks {
155-
all()*.dependsOn 'java_pluginExecutable'
155+
all().each { task ->
156+
task.dependsOn 'java_pluginExecutable'
157+
task.inputs.file javaPluginPath
158+
}
156159
ofSourceSet('test')*.plugins {
157160
grpc {}
158161
}

0 commit comments

Comments
 (0)