We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4942eda commit b40c63eCopy full SHA for b40c63e
1 file changed
protocol/protoLint.gradle
@@ -36,7 +36,8 @@ task protoLint {
36
description = "Validate Protobuf Enums using buf generated JSON AST. Enforces 'UNKNOWN_' prefix for index 0 to ensure JSON serialization backward compatibility."
37
38
// Explicitly depend on:
39
- // 1. extractIncludeProto: ensure external protos are available in build/extracted-include-protos/main.
+ // 1. extractIncludeProto: ensure external protos are extracted before buf runs.
40
+ // The include root is derived from that task's actual output below.
41
// 2. generateProto: fix Gradle implicit dependency warning due to output directory overlap.
42
dependsOn 'extractIncludeProto', 'generateProto'
43
0 commit comments