Fix cache warmer: add clean to resolve maven-clean-plugin and exec-maven-plugin#1394
Merged
Fix cache warmer: add clean to resolve maven-clean-plugin and exec-maven-plugin#1394
Conversation
4545276 to
9feef8b
Compare
Stop guessing which plugins are needed. Instead, run the EXACT same Maven commands from prCheck.yml, prIntegrationTests.yml, and coverageReport.yml. This is the only reliable way to ensure every plugin, provider, and transitive dependency is resolved and cached. Commands mirror: spotless:check, install, Arrow tests (3 variants), unit tests with jacoco, integration test compile, resolve-plugins. Signed-off-by: Gopal Lal <gopal.lal@databricks.com> Co-authored-by: Isaac Signed-off-by: Gopal Lal <gopal.lal@databricks.com>
9feef8b to
ec803b8
Compare
vikrantpuppala
approved these changes
Apr 8, 2026
shivam2680
approved these changes
Apr 8, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
maven-clean-plugin:3.2.0 and exec-maven-plugin:1.2.1 were missing from the dependency cache because the warmer ran
mvn installandmvn testwithout thecleanlifecycle phase. The CI workflows usemvn clean test, which requires these plugins.Fix: add
cleanto every warmer step to match CI commands exactly.Test plan
NO_CHANGELOG=true
This pull request was AI-assisted by Isaac.