Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ Set any of them to `false` to pass the corresponding `--skip-...` flag to `googl

- `11` -> `google-java-format 1.24.0`
- `17` -> `google-java-format 1.28.0`
- `21` -> `google-java-format 1.34.0`
- `21` -> `google-java-format 1.35.0`

If the selected formatter runtime is newer than the Java used to launch the formatter JVM, either:

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -259,7 +259,7 @@ object JavaFormatterPlugin extends AutoPlugin {
compatibleJavaVersion match {
case 11 => "1.24.0"
case 17 => "1.28.0"
case 21 => "1.34.0"
case 21 => "1.35.0"
case other =>
throw new MessageOnlyException(
s"Unsupported javafmtFormatterCompatibleJavaVersion: $other. Expected one of: 11, 17, 21.")
Expand Down