-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.sbt
More file actions
26 lines (22 loc) · 800 Bytes
/
build.sbt
File metadata and controls
26 lines (22 loc) · 800 Bytes
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
name := "playrest"
organization := "com.codingrodent"
version := "1.0-SNAPSHOT"
lazy val root = (project in file(".")).enablePlugins(PlayScala)
scalaVersion := "2.13.5"
libraryDependencies += guice
//
// add test support
libraryDependencies += "org.scalatestplus.play" %% "scalatestplus-play" % "5.1.0" % Test
//
// add support for swagger / play 2
libraryDependencies += "com.github.dwickern" %% "swagger-play2.8" % "3.1.0"
//
// the swagger ui
libraryDependencies += "org.webjars" % "swagger-ui" % "3.44.0"
//
// json handling
libraryDependencies += "com.fasterxml.jackson.module" %% "jackson-module-scala" % "2.10.1"
libraryDependencies += "com.fasterxml.jackson.core" % "jackson-databind" % "2.10.1"
//
// annotation support
libraryDependencies += "javax.ws.rs" % "javax.ws.rs-api" % "2.1.1"