[AURON #2440] Consolidate Maven properties and format code - #2441
Merged
Conversation
yew1eb
approved these changes
Jul 29, 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.
Which issue does this PR close?
Closes #2440
Rationale for this change
./dev/reformatproduced different formatting results depending on the JDK used to run it.pom.xmlselectedscalafmtVersionbased on the active JDK profile:3.0.0forjdk-8/jdk-11, and3.9.9forjdk-17/jdk-21. However,scalafmt.confdeclaresversion = 3.9.9, so only the JDK 17/21 profiles actually matched the intendedformatting rules.
As a result, running the formatter under JDK 8/11 vs JDK 17/21 produced different indentation for multi-line string interpolations (e.g.
.getOrElse(...)continuation lines), causing spurious diffs ingit statusdepending on which JDK happened to be active locally.What changes are included in this PR?
Unify
scalafmtVersionto3.9.9across alljdk-8/jdk-11/jdk-17/jdk-21profiles, matching the version declared inscalafmt.conf.Are there any user-facing changes?
No
How was this patch tested?
GHA
Was this patch authored or co-authored using generative AI tooling?