Skip to content

Commit

Permalink
chore: dependency updates on many dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
QuadStingray committed Sep 29, 2023
1 parent 21ae938 commit 1161c49
Show file tree
Hide file tree
Showing 7 changed files with 16 additions and 15 deletions.
2 changes: 1 addition & 1 deletion build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import dev.quadstingray.sbt.json.JsonFile

lazy val root = Project(id = "mc-server-parent", base = file(".")).aggregate(mcCli, mcLibrary, mcServer)

ThisBuild / scalaVersion := "2.13.11"
ThisBuild / scalaVersion := "2.13.12"

val json = JsonFile(file("package.json"))

Expand Down
6 changes: 3 additions & 3 deletions mongocamp-cli/build.sbt
Original file line number Diff line number Diff line change
@@ -1,17 +1,17 @@
enablePlugins(GraalVMNativeImagePlugin)

val PicoliCliVersion = "4.7.4"
val PicoliCliVersion = "4.7.5"
libraryDependencies += "info.picocli" % "picocli" % PicoliCliVersion
libraryDependencies += "info.picocli" % "picocli-codegen" % PicoliCliVersion % "provided"

libraryDependencies += "com.github.lukfor" % "magic-progress" % "0.3.2"

libraryDependencies += "com.typesafe.scala-logging" %% "scala-logging" % "3.9.5"
libraryDependencies += "ch.qos.logback" % "logback-classic" % "1.4.8"
libraryDependencies += "ch.qos.logback" % "logback-classic" % "1.4.11"

publish / skip := true

libraryDependencies += "io.get-coursier" %% "coursier-jvm" % "2.1.5"
libraryDependencies += "io.get-coursier" %% "coursier-jvm" % "2.1.7"

graalVMNativeImageOptions ++= Seq(
"--no-fallback",
Expand Down
10 changes: 5 additions & 5 deletions mongocamp-library/build.sbt
Original file line number Diff line number Diff line change
@@ -1,19 +1,19 @@
name := "mongocamp-library"

libraryDependencies += "io.get-coursier" %% "coursier" % "2.1.5"
libraryDependencies += "io.get-coursier" %% "coursier" % "2.1.7"

libraryDependencies += "dev.mongocamp" %% "mongodb-driver" % "2.6.3"
libraryDependencies += "dev.mongocamp" %% "mongodb-driver" % "2.6.4"

libraryDependencies += "io.github.classgraph" % "classgraph" % "4.8.161"
libraryDependencies += "io.github.classgraph" % "classgraph" % "4.8.162"

libraryDependencies += "com.github.blemale" %% "scaffeine" % "5.2.1" exclude("org.scala-lang.modules", "scala-java8-compat_2.12")

val circeVersion = "0.14.5"
val circeVersion = "0.14.6"
libraryDependencies += "io.circe" %% "circe-core" % circeVersion
libraryDependencies += "io.circe" %% "circe-generic" % circeVersion
libraryDependencies += "io.circe" %% "circe-parser" % circeVersion

libraryDependencies += "com.softwaremill.sttp.model" %% "core" % "1.7.1"
libraryDependencies += "com.softwaremill.sttp.model" %% "core" % "1.7.2"

libraryDependencies += "joda-time" % "joda-time" % "2.12.5"

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ import coursier.core.Configuration
import coursier.params.ResolutionParams
import coursier.parse.DependencyParser
import dev.mongocamp.server.config.DefaultConfigurations
import dev.mongocamp.server.library.BuildInfo

object CoursierModuleService extends LazyLogging {

Expand Down
8 changes: 4 additions & 4 deletions mongocamp-server/build.sbt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name := "mongocamp-server"

val TapirVersion = "1.6.2"
val TapirVersion = "1.7.5"
libraryDependencies += "com.softwaremill.sttp.tapir" %% "tapir-akka-http-server" % TapirVersion
libraryDependencies += "com.softwaremill.sttp.tapir" %% "tapir-openapi-docs" % TapirVersion
libraryDependencies += "com.softwaremill.sttp.tapir" %% "tapir-json-circe" % TapirVersion
Expand All @@ -10,13 +10,13 @@ libraryDependencies += "com.softwaremill.sttp.tapir" %% "tapir-sttp-client"
//libraryDependencies += "com.softwaremill.sttp.tapir" %% "tapir-asyncapi-docs" % TapirVersion
//libraryDependencies += "com.softwaremill.sttp.tapir" %% "tapir-asyncapi-circe-yaml" % TapirVersion

val sttClientVersion = "3.8.16"
val sttClientVersion = "3.9.0"
libraryDependencies += "com.softwaremill.sttp.client3" %% "akka-http-backend" % sttClientVersion
libraryDependencies += "com.softwaremill.sttp.client3" %% "core" % sttClientVersion

libraryDependencies += "ch.qos.logback" % "logback-classic" % "1.4.8"
libraryDependencies += "ch.qos.logback" % "logback-classic" % "1.4.11"

libraryDependencies += "com.github.jwt-scala" %% "jwt-circe" % "9.4.3"
libraryDependencies += "com.github.jwt-scala" %% "jwt-circe" % "9.4.4"

libraryDependencies += "org.quartz-scheduler" % "quartz" % "2.3.2"

Expand Down
2 changes: 1 addition & 1 deletion project/build.properties
Original file line number Diff line number Diff line change
@@ -1 +1 @@
sbt.version = 1.9.2
sbt.version = 1.9.4
2 changes: 1 addition & 1 deletion project/plugins.sbt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
addSbtPlugin("org.scalameta" % "sbt-scalafmt" % "2.5.0")
addSbtPlugin("org.scalameta" % "sbt-scalafmt" % "2.5.2")

addSbtPlugin("com.github.gseitz" % "sbt-release" % "1.0.13")

Expand Down

0 comments on commit 1161c49

Please sign in to comment.