Skip to content

Commit

Permalink
Bump sbt and sbt plugins
Browse files Browse the repository at this point in the history
- sbt to 1.9.8
- sbt-docusaur to 0.15.0
- sbt-devoops to 3.0.0
- sbt-tpolecat to 0.5.0
  • Loading branch information
kevin-lee committed Dec 31, 2023
1 parent d7d64a7 commit d7f629d
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 4 deletions.
6 changes: 6 additions & 0 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -992,6 +992,12 @@ def crossSubProject(projectName: String, crossProject: CrossProject.Builder): Cr
}
},
scalacOptions := scalacOptionsPostProcess(scalaVersion.value, scalacOptions.value),
scalacOptions := {
if (scalaVersion.value.startsWith("2.13"))
"-Ymacro-annotations" +: scalacOptions.value
else
scalacOptions.value
},
)
.settings(
mavenCentralPublishSettings
Expand Down
2 changes: 1 addition & 1 deletion project/build.properties
Original file line number Diff line number Diff line change
@@ -1 +1 @@
sbt.version=1.9.6
sbt.version=1.9.8
6 changes: 3 additions & 3 deletions project/plugins.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -11,16 +11,16 @@ addSbtPlugin("ch.epfl.scala" % "sbt-scalafix" % "0.11.0")
addSbtPlugin("org.scalameta" % "sbt-scalafmt" % "2.5.0")
addSbtPlugin("org.scoverage" % "sbt-scoverage" % "2.0.7")
addSbtPlugin("org.scalameta" % "sbt-mdoc" % "2.3.7")
addSbtPlugin("io.kevinlee" % "sbt-docusaur" % "0.13.0")
addSbtPlugin("io.kevinlee" % "sbt-docusaur" % "0.15.0")

addSbtPlugin("org.scala-js" % "sbt-scalajs" % "1.13.0")
addSbtPlugin("org.portable-scala" % "sbt-scalajs-crossproject" % "1.2.0")

val sbtDevOopsVersion = "2.24.0"
val sbtDevOopsVersion = "3.0.0"
addSbtPlugin("io.kevinlee" % "sbt-devoops-scala" % sbtDevOopsVersion)
addSbtPlugin("io.kevinlee" % "sbt-devoops-sbt-extra" % sbtDevOopsVersion)
addSbtPlugin("io.kevinlee" % "sbt-devoops-github" % sbtDevOopsVersion)

addSbtPlugin("io.kevinlee" % "sbt-devoops-starter" % sbtDevOopsVersion)

addSbtPlugin("io.github.davidgregory084" % "sbt-tpolecat" % "0.4.2")
addSbtPlugin("org.typelevel" % "sbt-tpolecat" % "0.5.0")

0 comments on commit d7f629d

Please sign in to comment.