From d57053a81ca1fc6edda99a015616572958d19ecf Mon Sep 17 00:00:00 2001 From: Kamenitxan Date: Sun, 9 Jun 2024 13:34:43 +0200 Subject: [PATCH] update libs --- build.sbt | 26 +++++++++++++------------- 1 file changed, 13 insertions(+), 13 deletions(-) diff --git a/build.sbt b/build.sbt index 3665da2..41a6192 100644 --- a/build.sbt +++ b/build.sbt @@ -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 @@ -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" ) ) @@ -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" ) ) }