Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 5 additions & 6 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -4,17 +4,17 @@ import sbt.Reference.display
import sbt.internal.ProjectMatrix

val scala2_12 = "2.12.20"
val scala2_13 = "2.13.13"
val scala2_13 = "2.13.16"
val scala3 = "3.3.5"

val scalaJVMVersions = List(scala2_12, scala2_13, scala3)
val scalaJSVersions = List(scala2_12, scala2_13, scala3)
val scalaNativeVersions = List(scala2_12, scala2_13, scala3)
val scalaNativeVersions = List(scala2_13, scala3)

val circeVersion = "0.14.6"
val circeVersion = "0.14.12"
val circeYamlVersion = "0.15.1"

val scalaTestVersion = "3.2.18"
val scalaTestVersion = "3.2.19"
val scalaCollectionCompatVersion = "2.11.0"

excludeLintKeys in Global ++= Set(ideSkipProject)
Expand Down Expand Up @@ -141,8 +141,7 @@ lazy val jsonSchemaCirce: ProjectMatrix = (projectMatrix in file("jsonschema-cir
libraryDependencies ++= Seq(
"io.circe" %%% "circe-core" % circeVersion,
"io.circe" %%% "circe-parser" % circeVersion,
"io.circe" %%% "circe-generic" % circeVersion,
"org.scala-lang.modules" %%% "scala-collection-compat" % scalaCollectionCompatVersion
"io.circe" %%% "circe-generic" % circeVersion
),
name := "jsonschema-circe"
)
Expand Down
4 changes: 2 additions & 2 deletions project/plugins.sbt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
libraryDependencies += "org.scala-js" %% "scalajs-env-selenium" % "1.1.1"
addSbtPlugin("org.scala-js" % "sbt-scalajs" % "1.16.0")
addSbtPlugin("org.scala-native" % "sbt-scala-native" % "0.4.17")
addSbtPlugin("org.scala-js" % "sbt-scalajs" % "1.18.2")
addSbtPlugin("org.scala-native" % "sbt-scala-native" % "0.5.7")
addSbtPlugin("com.eed3si9n" % "sbt-projectmatrix" % "0.10.1")

val sbtSoftwareMillVersion = "2.0.21"
Expand Down