Skip to content

Commit

Permalink
build: add other required dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
cake-lier committed Jun 27, 2023
1 parent 34847b7 commit 6385878
Show file tree
Hide file tree
Showing 4 changed files with 18 additions and 61 deletions.
6 changes: 6 additions & 0 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,12 @@ lazy val root = project
circeCore,
circeGeneric,
circeParser,
akka,
akkaStream,
akkaHttp,
akkaStreamTestkit,
akkaHttpTestkit,
akkaTestkit,
core
),
wartremoverErrors ++= Warts.allBut(Wart.ImplicitParameter),
Expand Down
12 changes: 12 additions & 0 deletions project/Dependencies.scala
Original file line number Diff line number Diff line change
Expand Up @@ -12,5 +12,17 @@ object Dependencies {

lazy val circeParser = "io.circe" %% "circe-parser" % "0.14.5"

lazy val akka = "com.typesafe.akka" %% "akka-actor-typed" % "2.8.0"

lazy val akkaStream = "com.typesafe.akka" %% "akka-stream-typed" % "2.8.0"

lazy val akkaHttp = "com.typesafe.akka" %% "akka-http" % "10.5.0"

lazy val akkaStreamTestkit = "com.typesafe.akka" %% "akka-stream-testkit" % "2.8.0" % Test

lazy val akkaHttpTestkit = "com.typesafe.akka" %% "akka-http-testkit" % "10.5.0" % Test

lazy val akkaTestkit = "com.typesafe.akka" %% "akka-actor-testkit-typed" % "2.8.0" % Test

lazy val core = "io.github.cake-lier" %% "tuples-space-core" % "1.0.1"
}
25 changes: 0 additions & 25 deletions src/main/scala/Main.scala

This file was deleted.

36 changes: 0 additions & 36 deletions src/test/scala/Test.scala

This file was deleted.

0 comments on commit 6385878

Please sign in to comment.