This is an automated email from the ASF dual-hosted git repository. He-Pin pushed a commit to branch unify-formatter-config in repository https://gitbox.apache.org/repos/asf/pekko-connectors-kafka.git
commit 1366e5ba10437a76f76f5e0b1fcf3c903142b8af Author: 虎鸣 <[email protected]> AuthorDate: Sun Jun 14 20:16:28 2026 +0800 chore: unify formatter config across pekko sub-projects Motivation: Align formatter plugins, command aliases, and JDK settings with other pekko sub-projects to reduce maintenance burden. Modification: - Standardize checkCodeStyle/applyCodeStyle command aliases - Add ThisBuild / javafmtFormatterCompatibleJavaVersion := 17 where missing - Replace custom verifyCodeFmt tasks with standard aliases where applicable - Upgrade sbt-java-formatter plugin where needed Result: Consistent formatter configuration across all pekko sub-projects. Tests: Not run - build config change only References: None - formatter unification across pekko sub-projects --- build.sbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.sbt b/build.sbt index 7b977721..f5ba304a 100644 --- a/build.sbt +++ b/build.sbt @@ -18,7 +18,7 @@ sourceDistIncubating := false ThisBuild / reproducibleBuildsCheckResolver := Resolver.ApacheMavenStagingRepo ThisBuild / javafmtFormatterCompatibleJavaVersion := 17 -addCommandAlias("verifyCodeStyle", "scalafmtCheckAll; scalafmtSbtCheck; +headerCheckAll; javafmtCheckAll") +addCommandAlias("checkCodeStyle", "scalafmtCheckAll; scalafmtSbtCheck; +headerCheckAll; javafmtCheckAll") addCommandAlias("applyCodeStyle", "+headerCreateAll; scalafmtAll; scalafmtSbt; javafmtAll") addCommandAlias("verifyDocs", ";+doc ;unidoc ;docs/paradoxBrowse") --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
