Skip to content

Commit

Permalink
Merge pull request #11 from ivan-mashonskiy/seminar-akka-http
Browse files Browse the repository at this point in the history
Template for akka-http seminar
  • Loading branch information
maxcom authored Apr 22, 2020
2 parents 63df857 + 8946cd8 commit 08c2fa3
Show file tree
Hide file tree
Showing 3 changed files with 24 additions and 0 deletions.
20 changes: 20 additions & 0 deletions code/seminar-akka-http/build.sbt
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name := "seminar-akka-http"

version := "0.1"

scalaVersion := "2.13.1"

libraryDependencies ++= {
val akkaVersion = "2.6.4"
val akkaHttpVersion = "10.1.11"
Seq(
"com.typesafe.akka" %% "akka-actor" % akkaVersion,
"com.typesafe.akka" %% "akka-slf4j" % akkaVersion,
"com.typesafe.akka" %% "akka-stream" % akkaVersion,
"com.typesafe.akka" %% "akka-actor-typed" % akkaVersion,
"com.typesafe.akka" %% "akka-http-core" % akkaHttpVersion,
"com.typesafe.akka" %% "akka-http" % akkaHttpVersion,

"de.heikoseeberger" %% "akka-http-play-json" % "1.31.0",
)
}
1 change: 1 addition & 0 deletions code/seminar-akka-http/project/build.properties
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
sbt.version = 1.3.10
3 changes: 3 additions & 0 deletions code/seminar-akka-http/src/main/scala/Main.scala
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
object Main {

}

0 comments on commit 08c2fa3

Please sign in to comment.