diff --git a/build.sbt b/build.sbt index a25d0c24..07d9f4c3 100644 --- a/build.sbt +++ b/build.sbt @@ -3,8 +3,8 @@ ThisBuild / organization := "io.joern" ThisBuild / scalaVersion := scala3 val slf4jVersion = "2.0.7" -val scala3 = "3.4.2" -val scala2_12 = "2.12.18" +val scala3 = "3.4.3" +val scala2_12 = "2.12.20" /** Only the below listed projects are included in things like `sbt compile`. * We explicitly want to exclude `benchmarks` which requires qwiet.ai / shiftleft @@ -28,7 +28,7 @@ lazy val core = project name := "flatgraph-core", libraryDependencies ++= Seq( "com.lihaoyi" %% "ujson" % "3.3.1", - "com.github.luben" % "zstd-jni" % "1.5.6-3", + "com.github.luben" % "zstd-jni" % "1.5.6-7", "org.slf4j" % "slf4j-api" % slf4jVersion, ) ) @@ -50,7 +50,7 @@ lazy val formats = project .settings( name := "flatgraph-formats", libraryDependencies ++= Seq( - "com.github.tototoshi" %% "scala-csv" % "1.4.0", + "com.github.tototoshi" %% "scala-csv" % "1.4.1", "org.scala-lang.modules" %% "scala-xml" % "2.3.0", "io.spray" %% "spray-json" % "1.3.6", "com.github.scopt" %% "scopt" % "4.1.0", @@ -97,7 +97,7 @@ lazy val domainClassesGenerator_2_12 = project libraryDependencies ++= Seq( "org.slf4j"% "slf4j-simple" % slf4jVersion % Optional, "com.lihaoyi" %% "os-lib" % "0.9.1", - "org.apache.commons" % "commons-text" % "1.10.0", + "org.apache.commons" % "commons-text" % "1.12.0", "com.github.scopt" %% "scopt" % "4.1.0", "org.scalameta" %% "scalafmt-dynamic" % "3.7.17", ), @@ -193,7 +193,7 @@ lazy val benchmarks = project ThisBuild / libraryDependencies ++= Seq( "org.slf4j" % "slf4j-simple" % slf4jVersion % Test, - "org.scalatest" %% "scalatest" % "3.2.18" % Test, + "org.scalatest" %% "scalatest" % "3.2.19" % Test, ) ThisBuild / scalacOptions ++= Seq( diff --git a/project/build.properties b/project/build.properties index ee4c672c..db1723b0 100644 --- a/project/build.properties +++ b/project/build.properties @@ -1 +1 @@ -sbt.version=1.10.1 +sbt.version=1.10.5 diff --git a/project/plugins.sbt b/project/plugins.sbt index 06c1884a..5659357c 100644 --- a/project/plugins.sbt +++ b/project/plugins.sbt @@ -1,5 +1,5 @@ addSbtPlugin("org.scalameta" % "sbt-scalafmt" % "2.4.6") addSbtPlugin("com.github.sbt" % "sbt-native-packager" % "1.9.16") addSbtPlugin("pl.project13.scala" % "sbt-jmh" % "0.4.4") -addSbtPlugin("com.github.sbt" % "sbt-dynver" % "5.0.1") +addSbtPlugin("com.github.sbt" % "sbt-dynver" % "5.1.0") addSbtPlugin("io.shiftleft" % "sbt-ci-release-early" % "2.0.19")