Skip to content

Commit

Permalink
Various updates
Browse files Browse the repository at this point in the history
  • Loading branch information
Jonas Chapuis committed Oct 10, 2024
1 parent 53ab1f4 commit 846308f
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 4 deletions.
6 changes: 3 additions & 3 deletions build.sbt
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
import Dependencies.*
import sbtversionpolicy.Compatibility.None

val scala213 = "2.13.14"
val scala3 = "3.4.3"
val scala213 = "2.13.15"
val scala3 = "3.5.2"

val commonSettings = Seq(
wartremoverExcluded += sourceManaged.value,
Expand All @@ -22,7 +22,7 @@ val commonSettings = Seq(
}),
Compile / scalacOptions ++= Seq("-Xfatal-warnings"),
Compile / scalacOptions ++= (CrossVersion.partialVersion(scalaVersion.value) match {
case Some((3, _)) => Seq("-Ykind-projector:underscores")
case Some((3, _)) => Seq("-Xkind-projector:underscores")
case Some((2, _)) =>
Seq("-Xsource:3", "-P:kind-projector:underscore-placeholders", "-Xlint:unused")
case _ => Nil
Expand Down
8 changes: 7 additions & 1 deletion project/plugins.sbt
Original file line number Diff line number Diff line change
@@ -1,7 +1,13 @@
addSbtPlugin("org.wartremover" % "sbt-wartremover" % "3.2.2")
addSbtPlugin("org.scoverage" % "sbt-scoverage" % "2.1.1")

addSbtPlugin("org.scoverage" % "sbt-scoverage" % "2.2.1")

addSbtPlugin("ch.epfl.scala" % "sbt-version-policy" % "3.2.1")

addSbtPlugin("com.github.sbt" % "sbt-ci-release" % "1.7.0")

addSbtPlugin("org.scalameta" % "sbt-scalafmt" % "2.5.2")

addSbtPlugin("com.github.sbt" % "sbt-site-paradox" % "1.7.0")

addSbtPlugin("com.github.sbt" % "sbt-paradox-material-theme" % "0.7.0")

0 comments on commit 846308f

Please sign in to comment.