-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.sbt
34 lines (26 loc) · 1.08 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
name := """fews-paper"""
version := "1.0-SNAPSHOT"
lazy val root = (project in file(".")).enablePlugins(PlayScala)
scalaVersion := "2.11.6"
libraryDependencies ++= Seq(
// jdbc,
cache,
ws,
specs2 % Test,
"joda-time" % "joda-time" % "2.7",
"mysql" % "mysql-connector-java" % "5.1.35",
"com.typesafe.play" %% "play-slick" % "1.0.0",
"com.typesafe.slick" %% "slick" % "3.0.0",
"com.typesafe.play" %% "play-slick-evolutions" % "1.0.0",
"org.joda" % "joda-convert" % "1.7",
"com.github.tototoshi" %% "slick-joda-mapper" % "2.0.0",
"org.mindrot" % "jbcrypt" % "0.3m"
)
libraryDependencies += "de.l3s.boilerpipe" % "boilerpipe" % "1.1.0"
libraryDependencies += "org.jsoup" % "jsoup" % "1.8.2"
libraryDependencies += "net.sourceforge.nekohtml" % "nekohtml" % "1.9.22"
libraryDependencies += "xerces" % "xercesImpl" % "2.11.0"
resolvers += "scalaz-bintray" at "http://dl.bintray.com/scalaz/releases"
// Play provides two styles of routers, one expects its actions to be injected, the
// other, legacy style, accesses its actions statically.
routesGenerator := InjectedRoutesGenerator