-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.sbt
26 lines (21 loc) · 832 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
name := """oauth-deadbolt"""
version := "1.0-SNAPSHOT"
lazy val root = (project in file(".")).enablePlugins(PlayScala)
scalaVersion := "2.11.8"
libraryDependencies ++= Seq(
jdbc,
//cache,
ws,
"org.scalatestplus.play" %% "scalatestplus-play" % "1.5.1" % Test,
"be.objectify" %% "deadbolt-java" % "2.5.1",
"be.objectify" %% "deadbolt-scala" % "2.5.0",
"com.typesafe.play.modules" %% "play-modules-redis" % "2.5.0",
"org.mindrot" % "jbcrypt" % "0.3m",
"com.nulab-inc" %% "play2-oauth2-provider" % "1.0.0"
)
resolvers += Resolver.mavenLocal
resolvers += Resolver.jcenterRepo
resolvers += "sedis-fix" at "https://dl.bintray.com/graingert/maven/"
resolvers += "scalaz-bintray" at "http://dl.bintray.com/scalaz/releases"
resolvers += Resolver.sonatypeRepo("releases")
resolvers += Resolver.sonatypeRepo("snapshots")