-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.sbt
32 lines (24 loc) · 1.01 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
name := """ideas"""
version := "1.0-SNAPSHOT"
lazy val root = (project in file(".")).enablePlugins(PlayScala)
scalaVersion := "2.11.7"
val webJars = Seq(
"org.webjars" %% "webjars-play" % "2.5.0-2",
"org.webjars" % "bootstrap" % "3.3.7-1"
)
libraryDependencies ++= webJars ++ Seq(
filters,
"com.mohiva" %% "play-silhouette" % "4.0.0",
"com.mohiva" %% "play-silhouette-crypto-jca" % "4.0.0",
"com.mohiva" %% "play-silhouette-password-bcrypt" % "4.0.0",
"com.mohiva" %% "play-silhouette-persistence" % "4.0.0",
"com.typesafe.play" %% "play-slick" % "2.0.2",
"com.typesafe.play" %% "play-slick-evolutions" % "2.0.2",
"org.postgresql" % "postgresql" % "9.4.1208",
"com.nulab-inc" %% "play2-oauth2-provider" % "0.18.0",
"net.codingwell" %% "scala-guice" % "4.0.1",
"com.iheart" %% "ficus" % "1.2.6",
"org.scalatestplus.play" %% "scalatestplus-play" % "1.5.1" % Test
)
resolvers += Resolver.jcenterRepo
resolvers += "scalaz-bintray" at "http://dl.bintray.com/scalaz/releases"