You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Upgrade protobuf Gradle plugin to 0.10.0 across all modules (#11310)
build: Upgrade protobuf Gradle plugin to 0.10.0 across all modules
Aligns all 8 usages from 0.8.18/0.9.3/0.9.4 to 0.10.0 as part of
Gradle 9 preparation. Also fixes related Gradle 9 incompatibilities:
* Replace deprecated `$buildDir` with `layout.buildDirectory.dir()`
and fix the generated source path (source -> sources)
* Replace eager spread-operator `*.plugins {}` with lazy `configureEach`
* Remove redundant legacy `buildscript { classpath }` block in
armeria-grpc/application
fix: remove manual srcDirs override that broke proto to Groovy compile chain
The `srcDirs +=` assignment discards the lazy task-dependency wiring
that protobuf plugin 0.10.0 establishes between `generateTestProto` and
`compileTestJava`, causing `compileTestGroovy` to miss Test2, Test3 on
**clean builds**. Now that the plugin auto-registers generated sources;
the block can go away.
Co-authored-by: devflow.devflow-routing-intake <devflow.devflow-routing-intake@kubernetes.us1.ddbuild.io>
0 commit comments