Tracking dependencies in one place

Report a typo

Explore the sbt documentation to understand which directory must be defined in the Dependencies.scala file that contains all dependencies.

// Dependencies.scala

import sbt._

object Dependencies {
  // Versions
  lazy val akkaVersion = "2.6.19"

  // Libraries
  val Logging = Seq(
    "org.slf4j" % "slf4j-api" % "1.7.30",
    "ch.qos.logback" % "logback-classic" % "1.2.3"
  )
}
Select one or more options from the list
___

Create a free account to access the full topic