-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.sbt
28 lines (20 loc) · 875 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
name := """democratizer""" //TODO why 3 quotation marks?
version := "1.0-SNAPSHOT" //TODO version?
lazy val root = (project in file(".")).enablePlugins(PlayScala)
scalaVersion := "2.11.5"
libraryDependencies ++= Seq(
jdbc,
"jp.t2v" %% "play2-auth" % "0.12.0",
"jp.t2v" %% "play2-auth-test" % "0.12.0" % "test",
"mysql" % "mysql-connector-java" % "5.1.28",
"com.typesafe.slick" %% "slick" % "2.1.0",
"com.typesafe.slick" %% "slick-codegen" % "2.1.0",
"org.slf4j" % "slf4j-nop" % "1.6.4",
"com.h2database" % "h2" % "1.3.170",
"org.scalatest" % "scalatest_2.11" % "2.2.1" % "test",
"com.typesafe.play" %% "play-slick" % "0.8.0"
)
resolvers += "Sonatype snapshots" at "http://oss.sonatype.org/content/repositories/snapshots/"
pipelineStages := Seq(digest, gzip)
fork in run := true
fork in run := true