-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.sbt
40 lines (32 loc) · 1.16 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
37
38
39
40
name := "simple-blogging-play"
version := "0.1"
scalaVersion := "2.11.8"
lazy val root = (project in file(".")).enablePlugins(PlayScala)
resolvers += Resolver.bintrayRepo("hseeberger", "maven")
scalacOptions ++= Seq(
"-Xfuture",
"-Yno-adapted-args",
"-Ywarn-numeric-widen",
"-deprecation",
"-encoding", "UTF-8",
"-feature",
"-language:existentials",
"-language:higherKinds",
"-language:implicitConversions",
"-unchecked")
libraryDependencies ++= {
val longevityVersion = "0.24.0"
val scalaTestVersion = "3.0.1"
val scalaTimeVersion = "2.16.0"
Seq(
ws, cache,
"com.github.nscala-time" %% "nscala-time" % scalaTimeVersion,
"org.longevityframework" %% "longevity" % longevityVersion,
"org.longevityframework" %% "longevity-cassandra-deps" % longevityVersion,
"org.longevityframework" %% "longevity-mongodb-deps" % longevityVersion,
"org.longevityframework" %% "longevity-sqlite-deps" % longevityVersion,
"org.scalatest" %% "scalatest" % scalaTestVersion % Test
)
}
addCompilerPlugin("org.scalamacros" % "paradise" % "2.1.0" cross CrossVersion.full)
fork in run := true