Skip to content

Commit

Permalink
Update scala-library to 2.12.20
Browse files Browse the repository at this point in the history
  • Loading branch information
scala-steward committed Sep 6, 2024
1 parent b7d868f commit ac764fa
Showing 1 changed file with 7 additions and 6 deletions.
13 changes: 7 additions & 6 deletions build.sbt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
lazy val scala212 = "2.12.17"
lazy val scala212 = "2.12.20"
lazy val scala213 = "2.13.10"
lazy val scala3 = "3.2.1"
lazy val supportedScalaVersions = List(
Expand All @@ -7,7 +7,7 @@ lazy val supportedScalaVersions = List(
scala212
)

val Java11 = JavaSpec.temurin("11")
val Java11 = JavaSpec.temurin("11")

lazy val srdfVersion = "0.1.125"
lazy val utilsVersion = "0.2.25"
Expand Down Expand Up @@ -73,7 +73,6 @@ lazy val wdtkUtil = "org.wikidata.wdtk" % "wdtk-util" % wikidataToolkitVersion
lazy val scalacheck = "org.scalacheck" %% "scalacheck" % scalacheckVersion
lazy val typesafeConfig = "com.typesafe" % "config" % typesafeConfigVersion


lazy val logbackClassic = "ch.qos.logback" % "logback-classic" % logbackVersion
lazy val scalaLogging =
"com.typesafe.scala-logging" %% "scala-logging" % scalaLoggingVersion
Expand Down Expand Up @@ -252,7 +251,7 @@ lazy val wshex = project
.settings(
crossScalaVersions := supportedScalaVersions,
libraryDependencies ++= Seq(
utils,
utils,
catsCore,
catsKernel,
circeCore,
Expand All @@ -269,7 +268,7 @@ lazy val wshex = project
scalaCollCompat,
srdfJena,
munit % Test,
munitEffect % Test,
munitEffect % Test
),
testFrameworks += new TestFramework("munit.Framework")
)
Expand Down Expand Up @@ -581,5 +580,7 @@ lazy val commonSettings = compilationSettings ++ sharedDependencies ++ Seq(
url = url("https://weso.labra.es")
)
),
libraryDependencies += compilerPlugin("com.github.ghik" % "zerowaste" % "0.2.1" cross CrossVersion.full)
libraryDependencies += compilerPlugin(
("com.github.ghik" % "zerowaste" % "0.2.1").cross(CrossVersion.full)
)
) ++ warnUnusedImport

0 comments on commit ac764fa

Please sign in to comment.