From 069c4e7d93cb16d78353ebec486f2abb3a7d69ac Mon Sep 17 00:00:00 2001 From: "scala-steward-simy4[bot]" <150573504+scala-steward-simy4[bot]@users.noreply.github.com> Date: Sun, 26 Apr 2026 00:48:48 +0000 Subject: [PATCH 1/3] Update sbt-java-formatter to 0.12.0 --- project/plugins.sbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project/plugins.sbt b/project/plugins.sbt index a14365b..808eddc 100644 --- a/project/plugins.sbt +++ b/project/plugins.sbt @@ -1,6 +1,6 @@ addSbtPlugin("com.github.sbt" % "sbt-ci-release" % "1.11.2") addSbtPlugin("com.github.sbt" % "sbt-release" % "1.4.0") -addSbtPlugin("com.github.sbt" % "sbt-java-formatter" % "0.11.0") +addSbtPlugin("com.github.sbt" % "sbt-java-formatter" % "0.12.0") addSbtPlugin("com.github.sbt" % "sbt-header" % "5.11.0") addSbtPlugin("com.github.sbt.junit" % "sbt-jupiter-interface" % "0.18.0") addSbtPlugin("org.jetbrains.scala" % "sbt-kotlin-plugin" % "4.0.0-M1") From 2310f2958d0f4249ab70dfe9dfca1bb8b3bdf5eb Mon Sep 17 00:00:00 2001 From: Alex Date: Sun, 26 Apr 2026 11:57:01 +1000 Subject: [PATCH 2/3] Delete .jvmopts --- .jvmopts | 6 ------ 1 file changed, 6 deletions(-) delete mode 100644 .jvmopts diff --git a/.jvmopts b/.jvmopts deleted file mode 100644 index a15bfa0..0000000 --- a/.jvmopts +++ /dev/null @@ -1,6 +0,0 @@ ---add-exports=jdk.compiler/com.sun.tools.javac.api=ALL-UNNAMED ---add-exports=jdk.compiler/com.sun.tools.javac.code=ALL-UNNAMED ---add-exports=jdk.compiler/com.sun.tools.javac.file=ALL-UNNAMED ---add-exports=jdk.compiler/com.sun.tools.javac.parser=ALL-UNNAMED ---add-exports=jdk.compiler/com.sun.tools.javac.tree=ALL-UNNAMED ---add-exports=jdk.compiler/com.sun.tools.javac.util=ALL-UNNAMED From e31742acd2b57647deee4588d559b32a32c849f8 Mon Sep 17 00:00:00 2001 From: Alex Date: Sun, 26 Apr 2026 11:59:11 +1000 Subject: [PATCH 3/3] Update build.sbt --- build.sbt | 1 + 1 file changed, 1 insertion(+) diff --git a/build.sbt b/build.sbt index 74f4926..7b33bfb 100644 --- a/build.sbt +++ b/build.sbt @@ -35,6 +35,7 @@ lazy val supportedScalaVersions = List(scala212, scala213, scala3) def javaLibSettings(release: Int) = Seq( crossPaths := false, autoScalaLibrary := false, + ThisBuild / javafmtFormatterCompatibleJavaVersion := 17, Compile / compile / javacOptions ++= Seq("-Xlint:all,-options", "-Werror", "--release", release.toString), Compile / doc / javacOptions ++= Seq("-Xdoclint:all,-missing", "--release", release.toString, "-html5") )