forked from gothinkster/realworld-starter-kit
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathbuild.sbt
33 lines (25 loc) · 891 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
name := """real-world-example-project"""
version := "1.0"
lazy val root = (project in file("."))
.enablePlugins(PlayScala)
scalaVersion := "2.13.0"
javacOptions ++= Seq("-source", "11", "-target", "11")
libraryDependencies ++= Seq(
filters,
evolutions,
ws,
ehcache,
cacheApi,
"com.typesafe.play" %% "play-json" % "2.7.4",
"org.julienrf" %% "play-json-derived-codecs" % "6.0.0",
"com.typesafe.play" %% "play-slick" % "4.0.2",
"com.typesafe.play" %% "play-slick-evolutions" % "4.0.2",
"commons-validator" % "commons-validator" % "1.6",
"com.github.slugify" % "slugify" % "2.4",
"com.h2database" % "h2" % "1.4.199",
"org.mindrot" % "jbcrypt" % "0.4",
"org.apache.commons" % "commons-lang3" % "3.9",
"com.softwaremill.macwire" %% "macros" % "2.3.3" % "provided",
"org.scalatestplus.play" %% "scalatestplus-play" % "4.0.3" % "test",
)
fork in run := true