-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbuild.sbt
28 lines (21 loc) · 926 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 := "urbanhacker"
organization := "aborg.nu"
version := "1.0-SNAPSHOT"
lazy val root = (project in file(".")).enablePlugins(PlayScala, LauncherJarPlugin)
scalaVersion := "2.12.4"
libraryDependencies ++= Seq(
ws,
evolutions,
guice,
"org.postgresql" % "postgresql" % "42.1.4",
"com.typesafe.play" %% "play-slick" % "3.0.0",
"com.typesafe.play" %% "play-slick-evolutions" % "3.0.0",
"com.github.tminglei" %% "slick-pg" % "0.15.4",
"com.markatta" %% "timeforscala" % "1.4",
"org.ccil.cowan.tagsoup" % "tagsoup" % "1.2.1",
"com.optimaize.languagedetector" % "language-detector" % "0.6",
"com.ibm.icu" % "icu4j" % "60.2",
"org.scalatestplus.play" %% "scalatestplus-play" % "3.0.0" % Test
)
resolvers += "scalaz-bintray" at "http://dl.bintray.com/scalaz/releases"
resolvers += Resolver.url("Typesafe Ivy releases", url("https://repo.typesafe.com/typesafe/ivy-releases"))(Resolver.ivyStylePatterns)