Skip to content

Commit

Permalink
Merge branch 'main' into update/sbt-mima-plugin-1.1.3
Browse files Browse the repository at this point in the history
  • Loading branch information
tgodzik authored Apr 17, 2024
2 parents dd7acb1 + 98235eb commit 7d266ee
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 5 deletions.
9 changes: 6 additions & 3 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,12 @@ lazy val V = new {
def munit = "1.0.0-M10"
def scalacheck = "1.17.0"
}
val scala212 = "2.12.15"
val scala213 = "2.13.8"
val scala212 = "2.12.19"

val scala213 = "2.13.13"

val scala3 = "3.3.1"

val ScalaVersions = List(scala213, scala212, scala3)
inThisBuild(
List(
Expand Down Expand Up @@ -194,7 +197,7 @@ lazy val tests = crossProject(JVMPlatform, JSPlatform, NativePlatform)
Seq(
"com.github.alexarchambault" %%% "scalacheck-shapeless_1.15" % "1.3.0"
)
else Seq("org.typelevel" %% "shapeless3-deriving" % "3.0.3")
else Seq("org.typelevel" %% "shapeless3-deriving" % "3.0.4")
},
graalVMNativeImageOptions ++= {
val reflectionFile =
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.9
10 changes: 9 additions & 1 deletion project/plugins.sbt
Original file line number Diff line number Diff line change
@@ -1,9 +1,17 @@
addSbtPlugin("com.typesafe.sbt" % "sbt-native-packager" % "1.8.1")

addSbtPlugin("com.github.sbt" % "sbt-ci-release" % "1.5.12")
addSbtPlugin("org.scalameta" % "sbt-mdoc" % "2.3.7")

addSbtPlugin("org.scalameta" % "sbt-mdoc" % "2.3.8")

addSbtPlugin("com.typesafe" % "sbt-mima-plugin" % "1.1.3")

addSbtPlugin("ch.epfl.scala" % "sbt-scalafix" % "0.12.0")

addSbtPlugin("org.scala-js" % "sbt-scalajs" % "1.13.2")

addSbtPlugin("org.portable-scala" % "sbt-scalajs-crossproject" % "1.3.2")

addSbtPlugin("org.portable-scala" % "sbt-scala-native-crossproject" % "1.3.2")

addSbtPlugin("org.scala-native" % "sbt-scala-native" % "0.4.15")

0 comments on commit 7d266ee

Please sign in to comment.