-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.sbt
32 lines (30 loc) · 870 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
inThisBuild(Seq(organization := "com.iheart.example"))
lazy val root = project.in(file("."))
.enablePlugins(PlayScala, SwaggerPlugin)
.settings(
name := "meetup-demo",
scalaVersion := "2.11.11",
publish := {},
publishLocal := {},
swaggerDomainNameSpaces := Seq("models"),
libraryDependencies ++= Seq(
"org.webjars" % "swagger-ui" % "2.2.0",
"com.iheart" %% "happy-path" % "0.7.4",
"com.iheart" %% "ficus" % "1.2.6",
"com.kailuowang" %% "henkan-convert" % "0.2.6",
"com.kailuowang" %% "henkan-optional" % "0.2.6"
),
scalacOptions ++= Seq(
"-encoding",
"UTF-8",
"-deprecation",
"-feature",
"-unchecked",
"-Xlint",
"-Ywarn-adapted-args",
"-Ywarn-inaccessible",
"-Ywarn-dead-code",
"-Ywarn-numeric-widen",
"-Ypartial-unification"
)
)