Skip to content

Commit

Permalink
Bunch update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
satabin committed Dec 3, 2023
1 parent f6f2c5b commit f015756
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 16 deletions.
18 changes: 8 additions & 10 deletions build.sbt
Original file line number Diff line number Diff line change
@@ -1,17 +1,15 @@
import com.typesafe.tools.mima.core._

val scala212 = "2.12.18"
val scala213 = "2.13.10"
val scala3 = "3.2.2"
val scala213 = "2.13.12"
val scala3 = "3.3.1"

val scalatestVersion = "3.2.15"
val scalatestVersion = "3.2.17"
val scalacheckVersion = "1.17.0"

ThisBuild / tlJdkRelease := Some(11)
ThisBuild / scalaVersion := scala213
ThisBuild / crossScalaVersions := Seq(scala212, scala213, scala3)
ThisBuild / tlSkipIrrelevantScalas := true

ThisBuild / tlSonatypeUseLegacyHost := true
ThisBuild / crossScalaVersions := Seq(elems = scala212, scala213, scala3)

ThisBuild / tlFatalWarnings := false

Expand Down Expand Up @@ -41,7 +39,7 @@ lazy val core = crossProject(JSPlatform, JVMPlatform, NativePlatform)
name := "diffson-core",
libraryDependencies ++= Seq(
"org.scala-lang.modules" %%% "scala-collection-compat" % "2.11.0",
"org.typelevel" %%% "cats-core" % "2.9.0",
"org.typelevel" %%% "cats-core" % "2.10.0",
"org.scalatest" %%% "scalatest" % scalatestVersion % Test,
"org.scalacheck" %%% "scalacheck" % scalacheckVersion % Test
),
Expand Down Expand Up @@ -73,11 +71,11 @@ lazy val playJson = crossProject(JSPlatform, JVMPlatform)
.in(file("playJson"))
.settings(commonSettings: _*)
.settings(name := "diffson-play-json",
libraryDependencies += "com.typesafe.play" %%% "play-json" % "2.10.0-RC6",
libraryDependencies += "org.playframework" %%% "play-json" % "3.0.1",
tlVersionIntroduced := Map("3" -> "4.3.0"))
.dependsOn(core, testkit % Test)

val circeVersion = "0.14.5"
val circeVersion = "0.14.6"
lazy val circe = crossProject(JSPlatform, JVMPlatform, NativePlatform)
.crossType(CrossType.Full)
.in(file("circe"))
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.8.3
sbt.version=1.9.7
9 changes: 4 additions & 5 deletions project/plugins.sbt
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
addSbtPlugin("org.typelevel" % "sbt-typelevel" % "0.4.20")
addSbtPlugin("org.scala-js" % "sbt-scalajs" % "1.13.1")
addSbtPlugin("org.scala-native" % "sbt-scala-native" % "0.4.12")
addSbtPlugin("org.portable-scala" % "sbt-scala-native-crossproject" % "1.3.1")
addSbtPlugin("pl.project13.scala" % "sbt-jmh" % "0.4.4")
addSbtPlugin("org.typelevel" % "sbt-typelevel" % "0.6.3")
addSbtPlugin("org.scala-js" % "sbt-scalajs" % "1.14.0")
addSbtPlugin("org.scala-native" % "sbt-scala-native" % "0.4.16")
addSbtPlugin("pl.project13.scala" % "sbt-jmh" % "0.4.6")

0 comments on commit f015756

Please sign in to comment.