|
1 | 1 | import com.typesafe.tools.mima.core._
|
2 | 2 |
|
3 | 3 | val scala212 = "2.12.18"
|
4 |
| -val scala213 = "2.13.10" |
5 |
| -val scala3 = "3.2.2" |
| 4 | +val scala213 = "2.13.12" |
| 5 | +val scala3 = "3.3.1" |
6 | 6 |
|
7 |
| -val scalatestVersion = "3.2.15" |
| 7 | +val scalatestVersion = "3.2.17" |
8 | 8 | val scalacheckVersion = "1.17.0"
|
9 | 9 |
|
| 10 | +ThisBuild / tlJdkRelease := Some(11) |
10 | 11 | ThisBuild / scalaVersion := scala213
|
11 |
| -ThisBuild / crossScalaVersions := Seq(scala212, scala213, scala3) |
12 |
| -ThisBuild / tlSkipIrrelevantScalas := true |
13 |
| - |
14 |
| -ThisBuild / tlSonatypeUseLegacyHost := true |
| 12 | +ThisBuild / crossScalaVersions := Seq(elems = scala212, scala213, scala3) |
15 | 13 |
|
16 | 14 | ThisBuild / tlFatalWarnings := false
|
17 | 15 |
|
@@ -41,7 +39,7 @@ lazy val core = crossProject(JSPlatform, JVMPlatform, NativePlatform)
|
41 | 39 | name := "diffson-core",
|
42 | 40 | libraryDependencies ++= Seq(
|
43 | 41 | "org.scala-lang.modules" %%% "scala-collection-compat" % "2.11.0",
|
44 |
| - "org.typelevel" %%% "cats-core" % "2.9.0", |
| 42 | + "org.typelevel" %%% "cats-core" % "2.10.0", |
45 | 43 | "org.scalatest" %%% "scalatest" % scalatestVersion % Test,
|
46 | 44 | "org.scalacheck" %%% "scalacheck" % scalacheckVersion % Test
|
47 | 45 | ),
|
@@ -73,11 +71,11 @@ lazy val playJson = crossProject(JSPlatform, JVMPlatform)
|
73 | 71 | .in(file("playJson"))
|
74 | 72 | .settings(commonSettings: _*)
|
75 | 73 | .settings(name := "diffson-play-json",
|
76 |
| - libraryDependencies += "com.typesafe.play" %%% "play-json" % "2.10.0-RC6", |
| 74 | + libraryDependencies += "org.playframework" %%% "play-json" % "3.0.1", |
77 | 75 | tlVersionIntroduced := Map("3" -> "4.3.0"))
|
78 | 76 | .dependsOn(core, testkit % Test)
|
79 | 77 |
|
80 |
| -val circeVersion = "0.14.5" |
| 78 | +val circeVersion = "0.14.6" |
81 | 79 | lazy val circe = crossProject(JSPlatform, JVMPlatform, NativePlatform)
|
82 | 80 | .crossType(CrossType.Full)
|
83 | 81 | .in(file("circe"))
|
|
0 commit comments