-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.sbt
29 lines (15 loc) · 900 Bytes
/
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
name := """Graphql-Forum"""
version := "2.6.x"
lazy val root = (project in file(".")).enablePlugins(PlayScala, DebianPlugin)
resolvers += Resolver.sonatypeRepo("snapshots")
maintainer in Linux := "Jeff Registre <[email protected]>"
packageSummary in Linux := "GraphQL Forum test bench with Sangria and Play framework."
packageDescription := "GraphQL Api server built with Play framework and Sangria library."
scalaVersion := "2.12.2"
libraryDependencies += guice
libraryDependencies += "com.typesafe.play" %% "play-slick" % "3.0.0-M5"
libraryDependencies += "com.typesafe.play" %% "play-slick-evolutions" % "3.0.0-M5"
libraryDependencies += "org.postgresql" % "postgresql" % "42.1.4"
libraryDependencies += "org.sangria-graphql" % "sangria_2.12" % "1.2.2"
libraryDependencies += "org.sangria-graphql" % "sangria-play-json_2.12" % "1.0.3"
libraryDependencies += specs2 % Test