Skip to content

Commit

Permalink
Fixing dependencies (pekko)
Browse files Browse the repository at this point in the history
  • Loading branch information
Leonard Wolters committed Nov 1, 2023
1 parent 543ae77 commit 5e798f9
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 6 deletions.
4 changes: 2 additions & 2 deletions build.sbt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import Build._
import Build.*

// Scala Formatting
ThisBuild / scalafmtVersion := "1.5.1"
Expand Down Expand Up @@ -75,7 +75,7 @@ lazy val client: Project = (project in file("client"))
"org.apache.pekko" %% "pekko-http" % PekkoHttpVersion,
"com.typesafe.scala-logging" %% "scala-logging" % "3.9.5",
"joda-time" % "joda-time" % "2.12.2"
) ++ testDependencies.map(_ % Test)
) ++ Seq("org.apache.pekko" %% "pekko-testkit" % PekkoVersion % Test) ++ testDependencies.map(_ % Test)
)

lazy val dsl = (project in file("dsl"))
Expand Down
6 changes: 2 additions & 4 deletions project/Build.scala
Original file line number Diff line number Diff line change
@@ -1,11 +1,9 @@
import sbt._
import sbt.*

object Build {

val PekkoVersion = "1.0.1"
val PekkoHttpVersion = "1.0.0"

val testDependencies = Seq("org.scalatest" %% "scalatest" % "3.2.15",
"org.apache.pekko" %% "pekko-testkit" % PekkoVersion,
"ch.qos.logback" % "logback-classic" % "1.4.6")
val testDependencies = Seq("org.scalatest" %% "scalatest" % "3.2.15", "ch.qos.logback" % "logback-classic" % "1.4.7")
}

0 comments on commit 5e798f9

Please sign in to comment.