Skip to content

Commit

Permalink
update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
rmgk committed Sep 14, 2023
1 parent 4896fbe commit 09671ae
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,7 @@ lazy val examples = project.in(file("Modules/Example Misc 2015"))
noPublish,
fork := true,
libraryDependencies ++= Seq(
("org.scala-lang.modules" %% "scala-xml" % "1.3.0").cross(CrossVersion.for3Use2_13),
("org.scala-lang.modules" %% "scala-xml" % "1.3.1").cross(CrossVersion.for3Use2_13),
"org.scala-lang.modules" %% "scala-swing" % "3.0.0"
)
)
Expand Down
2 changes: 1 addition & 1 deletion project/Dependencies.scala
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ object Dependencies {
def scribeSlf4j = libraryDependencies += "com.outr" %% "scribe-slf4j" % "3.10.7"
def scribeSlf4j2 = libraryDependencies += "com.outr" %% "scribe-slf4j2" % "3.10.7"
def sourcecode = libraryDependencies += "com.lihaoyi" %%% "sourcecode" % "0.3.0"
def sqliteJdbc = libraryDependencies += "org.xerial" % "sqlite-jdbc" % "3.42.0.0"
def sqliteJdbc = libraryDependencies += "org.xerial" % "sqlite-jdbc" % "3.43.0.0"
def upickle = libraryDependencies += "com.lihaoyi" %%% "upickle" % "3.1.2"
def jsoniterScala =
libraryDependencies ++= Seq(
Expand Down
6 changes: 3 additions & 3 deletions project/RescalaDependencies.scala
Original file line number Diff line number Diff line change
Expand Up @@ -6,21 +6,21 @@ import Settings.{`is 3`, `is 2.11`}

object RescalaDependencies {

val scalatest = libraryDependencies += "org.scalatest" %%% "scalatest" % "3.2.16" % Test
val scalatest = libraryDependencies += "org.scalatest" %%% "scalatest" % "3.2.17" % Test
val circe = libraryDependencies ++= Seq("core", "generic", "parser").map(n => "io.circe" %%% s"circe-$n" % "0.14.3")
val scalaReflectProvided = libraryDependencies ++=
(if (`is 3`(scalaVersion.value)) None
else Some(scalaOrganization.value % "scala-reflect" % scalaVersion.value % "provided"))
val scalatestpluscheck =
libraryDependencies += (if (`is 2.11`(scalaVersion.value))
"org.scalatestplus" %%% "scalacheck-1-15" % "3.2.4.0-M1" % "test"
else "org.scalatestplus" %%% "scalacheck-1-17" % "3.2.16.0" % "test")
else "org.scalatestplus" %%% "scalacheck-1-17" % "3.2.17.0" % "test")
val retypecheck = libraryDependencies += (
if (`is 3`(scalaVersion.value)) None
else Some("io.github.scala-loci" %% "retypecheck" % "0.10.0")
)
def jetty11 = {
val jettyVersion = "11.0.15"
val jettyVersion = "11.0.16"
libraryDependencies ++= Seq(
"org.eclipse.jetty" % "jetty-server" % jettyVersion,
"org.eclipse.jetty.websocket" % "websocket-jetty-api" % jettyVersion,
Expand Down

0 comments on commit 09671ae

Please sign in to comment.