Skip to content

Commit

Permalink
update scala & libs
Browse files Browse the repository at this point in the history
  • Loading branch information
kamenitxan committed Oct 9, 2023
1 parent 88a5e95 commit 72bb69c
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions build.sbt
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import sbtassembly.AssemblyPlugin.autoImport.assembly

val V = new {
val Scala = "3.3.1-RC4"
val Scala = "3.3.1"
val jakon = "0.5.8-SNAPSHOT"
val spark = "2.9.4-jakon-3"
val log4j = "2.20.0"
Expand Down Expand Up @@ -44,7 +44,7 @@ val Dependencies = new {
"de.svenkubiak" % "jBCrypt" % "0.4.3",
"net.minidev" % "json-smart" % "2.5.0", // TODO remove
"com.sun.mail" % "jakarta.mail" % "2.0.1",
"com.atlassian.commonmark" % "commonmark" % "0.17.0", // TODO https://mvnrepository.com/artifact/org.commonmark/commonmark
"org.commonmark" % "commonmark" % "0.21.0",
"com.google.code.gson" % "gson" % "2.10.1", // TODO remove
"io.circe" %% "circe-core" % V.circeVersion,
"io.circe" %% "circe-generic"% V.circeVersion,
Expand All @@ -57,7 +57,7 @@ val Dependencies = new {
"cz.etn" % "email-validator" % "1.3.0" excludeAll(
ExclusionRule(organization = "javax.mail", name = "javax.mail-api")
),
"com.lihaoyi" %% "sourcecode" % "0.3.0"
"com.lihaoyi" %% "sourcecode" % "0.3.1"
)
)

Expand All @@ -70,7 +70,7 @@ val Dependencies = new {
libraryDependencies ++= Seq(
//"dev.zio" %% "zio-http" % "3.0.0-RC2",
"org.scalatest" %% "scalatest" % "3.2.17" % "test",
"org.seleniumhq.selenium" % "htmlunit3-driver" % "4.12.0" % "test"
"org.seleniumhq.selenium" % "htmlunit3-driver" % "4.13.0" % "test"
)
)
}
Expand Down Expand Up @@ -205,3 +205,4 @@ addCommandAlias("ci", CICommands)
addCommandAlias("preCI", PrepareCICommands)
addCommandAlias("jar", "clean; coverageOff; assembly")
addCommandAlias("githubTest", "coverageOn; coverage; test; coverageReport; coverageOff;")
addCommandAlias("outdated", "dependencyUpdates")

0 comments on commit 72bb69c

Please sign in to comment.