-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.sbt
27 lines (16 loc) · 862 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
name := "EggPlant"
version := "1.0"
lazy val `eggplant` = (project in file(".")).enablePlugins(PlayScala)
resolvers += "scalaz-bintray" at "https://dl.bintray.com/scalaz/releases"
resolvers += "Akka Snapshot Repository" at "https://repo.akka.io/snapshots/"
scalaVersion := "2.12.2"
libraryDependencies ++= Seq( jdbc , ehcache , ws , specs2 % Test , guice )
unmanagedResourceDirectories in Test <+= baseDirectory ( _ /"target/web/public/test" )
libraryDependencies += "commons-io" % "commons-io" % "2.5"
libraryDependencies += "org.apache.commons" % "commons-lang3" % "3.6"
libraryDependencies += "mysql" % "mysql-connector-java" % "5.1.47"
libraryDependencies ++=Seq(
"com.typesafe.play" %% "play-slick" % "4.0.2",
"com.typesafe.slick" %% "slick-codegen" % "3.3.2",
"com.github.tototoshi" %% "slick-joda-mapper" % "2.4.1"
)