-
Notifications
You must be signed in to change notification settings - Fork 3
/
build.sbt
30 lines (20 loc) · 905 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
import com.typesafe.sbt.packager.MappingsHelper.directory
name := "emt"
organization := "eu.ehri_project"
version := "1.0-SNAPSHOT"
lazy val root = (project in file("."))
.enablePlugins(PlayScala, SbtWeb, LauncherJarPlugin)
scalaVersion := "2.13.8"
libraryDependencies += guice
libraryDependencies += ws
libraryDependencies += "com.typesafe.play" %% "play-json" % "2.8.2"
libraryDependencies += "com.fasterxml.jackson.dataformat" % "jackson-dataformat-csv" % "2.11.4"
libraryDependencies += "org.scalatestplus.play" %% "scalatestplus-play" % "5.1.0" % Test
// Adds additional packages into Twirl
//TwirlKeys.templateImports += "eu.ehri.project.controllers._"
// Adds additional packages into conf/routes
// play.sbt.routes.RoutesKeys.routesImport += "eu.ehri.project.binders._"
pipelineStages := Seq(digest)
// Dist options
topLevelDirectory := None
mappings in Universal ++= directory("bin")