-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathbuild.sbt
More file actions
22 lines (18 loc) · 876 Bytes
/
build.sbt
File metadata and controls
22 lines (18 loc) · 876 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
name := "play-modules-redis"
organization := "com.lifeway"
crossScalaVersions := Seq("2.11.8")
scalaVersion := "2.11.8"
javacOptions ++= Seq("-source", "1.8", "-target", "1.8", "-Xlint:unchecked", "-encoding", "UTF-8")
scalacOptions += "-deprecation"
libraryDependencies ++= Seq(
"com.typesafe.play" %% "play" % "2.5.3" % "provided",
"com.typesafe.play" %% "play-test" % "2.5.3" % "test",
"com.typesafe.play" %% "play-specs2" % "2.5.3" % "test",
"com.typesafe.play" %% "play-cache" % "2.5.3",
"biz.source_code" % "base64coder" % "2010-12-19",
"org.sedis" %% "sedis" % "1.2.2"
)
resolvers ++= Seq(
"pk11 repo" at "http://pk11-scratch.googlecode.com/svn/trunk",
"Scalaz Bintray Repo" at "http://dl.bintray.com/scalaz/releases"
)