Skip to content

Commit

Permalink
Format dependencies to prepare for scala steward
Browse files Browse the repository at this point in the history
  • Loading branch information
lomigmegard committed Mar 5, 2024
1 parent d595f34 commit d1831b1
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
8 changes: 4 additions & 4 deletions project/Dependencies.scala
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,8 @@ object Dependencies {
val SlickVersion = "3.4.1"
val SlickPgVersion = "0.21.1"
val SslConfigVersion = "0.6.1"

val LogbackVersion = "1.4.14"

val JdbcDrivers = Seq("org.postgresql" % "postgresql" % "42.7.1")
val PostgresqlVersion = "42.7.1"

val Libraries: Seq[ModuleID] = Seq(
"ch.qos.logback" % "logback-classic" % LogbackVersion % Test,
Expand All @@ -27,5 +25,7 @@ object Dependencies {
"org.apache.pekko" %% "pekko-persistence-query" % PekkoVersion % Provided,
"com.typesafe.slick" %% "slick" % SlickVersion,
"com.typesafe.slick" %% "slick-hikaricp" % SlickVersion,
"org.scalatest" %% "scalatest" % ScalaTestVersion % Test) ++ JdbcDrivers.map(_ % Test)
"org.scalatest" %% "scalatest" % ScalaTestVersion % Test,
"org.postgresql" % "postgresql" % PostgresqlVersion % Test,
)
}
6 changes: 3 additions & 3 deletions project/plugins.sbt
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// compliance
addSbtPlugin("org.scalameta" % "sbt-scalafmt" % "2.5.2")

addSbtPlugin("com.typesafe" % "sbt-mima-plugin" % "1.1.3")
// release

addSbtPlugin("com.github.sbt" % "sbt-ci-release" % "1.5.12")
// docs

addSbtPlugin("com.github.sbt" % "sbt-unidoc" % "0.5.0")

0 comments on commit d1831b1

Please sign in to comment.