-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbuild.sbt
36 lines (25 loc) · 1.14 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
name := """play-scala-shopify-app"""
organization := "com.kylegalloway"
version := "1.0-SNAPSHOT"
lazy val root = (project in file(".")).enablePlugins(PlayScala)
scalaVersion := "2.11.8"
resolvers += "Atlassian Releases" at "https://maven.atlassian.com/public/"
libraryDependencies += filters
libraryDependencies += "org.scalatestplus.play" %% "scalatestplus-play" % "1.5.1" % Test
// Silhouette for oauth
libraryDependencies ++= Seq(
"com.mohiva" %% "play-silhouette" % "4.0.0",
"com.mohiva" %% "play-silhouette-password-bcrypt" % "4.0.0",
"com.mohiva" %% "play-silhouette-crypto-jca" % "4.0.0",
"com.mohiva" %% "play-silhouette-persistence" % "4.0.0",
"com.mohiva" %% "play-silhouette-testkit" % "4.0.0" % "test"
)
libraryDependencies += ws
// Scala Guice for Silhouette
libraryDependencies += "net.codingwell" %% "scala-guice" % "4.0.1"
// Ficus for config reading
libraryDependencies += "com.iheart" %% "ficus" % "1.4.0"
// Adds additional packages into Twirl
//TwirlKeys.templateImports += "com.kylegalloway.controllers._"
// Adds additional packages into conf/routes
// play.sbt.routes.RoutesKeys.routesImport += "com.kylegalloway.binders._"