-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.sbt
executable file
·35 lines (27 loc) · 936 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
27
28
29
30
31
32
33
34
35
name := "Critical Sight"
version := "0.1"
scalaVersion := "2.11.6"
lazy val root = (project in file(".")).enablePlugins(PlayScala)
scalacOptions ++=
Seq("-deprecation", "-feature",
"-language:implicitConversions")
// Use this to include classes_managed in Eclipse's library dependencies.
// Otherwise it will give a compile error for classes like
// views.html.Application
// which are generated from the views directory.
//
unmanagedJars in Compile += ( baseDirectory.value / "target/scala-2.11/classes" )
// This added by following
// https://www.playframework.com/documentation/2.3.8/Build
//
libraryDependencies ++= Seq(
jdbc,
anorm,
cache
)
// This adds ScalaTest+Play. See
// https://www.playframework.com/documentation/2.3.8/ScalaTestingWithScalaTest
// and for the right version see
// http://www.scalatest.org/plus/play/versions
//
libraryDependencies += "org.scalatestplus" %% "play" % "1.2.0" % "test"