This repository has been archived by the owner on Nov 13, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.sbt
45 lines (35 loc) · 1.6 KB
/
build.sbt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
name := "sangria-akka-http-example"
version := "0.1.0-SNAPSHOT"
description := "An example GraphQL server written with akka-http, circe and sangria."
scalaVersion := "2.12.8"
scalacOptions ++= Seq("-deprecation", "-feature")
libraryDependencies ++= Seq(
"org.sangria-graphql" %% "sangria" % "1.4.2",
"org.sangria-graphql" %% "sangria-slowlog" % "0.1.8",
"org.sangria-graphql" %% "sangria-circe" % "1.2.1",
"org.sangria-graphql" %% "sangria-monix" % "1.0.0",
"org.sangria-graphql" %% "sangria-akka-streams" % "1.0.1",
"com.typesafe.akka" %% "akka-http" % "10.1.3",
"de.heikoseeberger" %% "akka-http-circe" % "1.21.0",
"com.typesafe.akka" %% "akka-stream" % "2.5.23",
"com.typesafe.akka" %% "akka-actor" % "2.5.23",
"io.circe" %% "circe-core" % "0.10.0",
"io.circe" %% "circe-parser" % "0.10.0",
"io.circe" %% "circe-optics" % "0.10.0",
"io.circe" %% "circe-generic" % "0.10.0",
"org.scalatest" %% "scalatest" % "3.0.5" % Test,
"org.scalaj" %% "scalaj-http" % "2.4.1",
"com.typesafe.slick" %% "slick" % "3.3.0",
"com.typesafe.slick" %% "slick-hikaricp" % "3.3.0",
"com.h2database" % "h2" % "1.4.199",
"com.github.t3hnar" %% "scala-bcrypt" % "4.0",
"javax.mail" % "mail" % "1.4.1",
"com.google.api-client" % "google-api-client" % "1.29.0",
"com.github.daddykotex" %% "courier" % "1.0.0",
"com.typesafe.scala-logging" %% "scala-logging" % "3.9.2",
"ch.qos.logback" % "logback-classic" % "1.2.3",
"io.gatling.highcharts" % "gatling-charts-highcharts" % "3.1.2" % "test",
"io.gatling" % "gatling-test-framework" % "3.1.2" % "test",
)
Revolver.settings
enablePlugins(JavaAppPackaging)