Skip to content

Commit

Permalink
update libs
Browse files Browse the repository at this point in the history
  • Loading branch information
kamenitxan committed Jun 9, 2024
1 parent dada7c1 commit d57053a
Showing 1 changed file with 13 additions and 13 deletions.
26 changes: 13 additions & 13 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ val V = new {
val Scala = "3.3.3"
val jakon = "0.6.0-SNAPSHOT"
val spark = "2.9.4-jakon-4"
val log4j = "2.20.0"
val circeVersion = "0.14.6"
val log4j = "2.23.1"
val circeVersion = "0.14.7"
}

scalaVersion := V.Scala
Expand Down Expand Up @@ -33,33 +33,33 @@ val Dependencies = new {
Seq(
"com.intellisrc" % "spark-core" % V.spark,
"com.sparkjava" % "spark-template-pebble" % "2.7.1-jakon.3",
"org.slf4j" % "slf4j-api" % "2.0.9",
"org.slf4j" % "slf4j-api" % "2.0.12",
"org.apache.logging.log4j" % "log4j-api" % V.log4j,
"org.apache.logging.log4j" % "log4j-core" % V.log4j,
"org.apache.logging.log4j" % "log4j-slf4j2-impl" % V.log4j,
"org.xerial" % "sqlite-jdbc" % "3.42.0.0",
"org.xerial" % "sqlite-jdbc" % "3.46.0.0",
"mysql" % "mysql-connector-java" % "8.0.33",
"com.google.guava" % "guava" % "32.1.2-jre",
"commons-io" % "commons-io" % "2.13.0",
"org.apache.commons" % "commons-lang3" % "3.13.0",
"commons-codec" % "commons-codec" % "1.16.0",
"commons-io" % "commons-io" % "2.16.1",
"org.apache.commons" % "commons-lang3" % "3.14.0",
"commons-codec" % "commons-codec" % "1.17.0",
"org.apache.commons" % "commons-fileupload2-jakarta" % "2.0.0-M1",
"de.svenkubiak" % "jBCrypt" % "0.4.3",
"com.sun.mail" % "jakarta.mail" % "2.0.1",
"org.commonmark" % "commonmark" % "0.21.0",
"org.commonmark" % "commonmark" % "0.22.0",
"com.google.code.gson" % "gson" % "2.10.1", // TODO remove
"io.circe" %% "circe-core" % V.circeVersion,
"io.circe" %% "circe-generic"% V.circeVersion,
"io.circe" %% "circe-parser"% V.circeVersion,
//"org.apache.lucene" % "lucene-core" % "7.5.0",
//"org.apache.lucene" % "lucene-queryparser" % "7.5.0",
"io.github.classgraph" % "classgraph" % "4.8.162",
"com.zaxxer" % "HikariCP" % "5.0.1",
"io.github.classgraph" % "classgraph" % "4.8.171",
"com.zaxxer" % "HikariCP" % "5.1.0",
"com.github.scribejava" % "scribejava-apis" % "8.3.3",
"cz.etn" % "email-validator" % "1.3.0" excludeAll(
ExclusionRule(organization = "javax.mail", name = "javax.mail-api")
),
"com.lihaoyi" %% "sourcecode" % "0.3.1"
"com.lihaoyi" %% "sourcecode" % "0.4.2"
)
)

Expand All @@ -71,8 +71,8 @@ val Dependencies = new {
lazy val tests = Def.settings(
libraryDependencies ++= Seq(
//"dev.zio" %% "zio-http" % "3.0.0-RC2",
"org.scalatest" %% "scalatest" % "3.2.17" % "test",
"org.seleniumhq.selenium" % "htmlunit3-driver" % "4.16.0" % "test"
"org.scalatest" %% "scalatest" % "3.2.18" % "test",
"org.seleniumhq.selenium" % "htmlunit3-driver" % "4.20.0" % "test"
)
)
}
Expand Down

0 comments on commit d57053a

Please sign in to comment.