-
Notifications
You must be signed in to change notification settings - Fork 5
/
build.sbt
40 lines (39 loc) · 1.23 KB
/
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
34
35
36
37
38
39
40
inThisBuild(
List(
scalaVersion := "2.13.8",
version := "0.6.0",
organization := "com.github.tmtsoftware.embedded-keycloak",
homepage := Some(url("https://github.com/tmtsoftware/embedded-keycloak")),
licenses := List(
"Apache-2.0" -> url("http://www.apache.org/licenses/LICENSE-2.0")
),
developers := List(
Developer("tmtsoftware", "TMT", "", url("https://github.com/tmtsoftware"))
),
scalacOptions ++= Seq(
"-encoding",
"UTF-8",
"-feature",
"-unchecked",
"-deprecation",
"-Xlint",
"-Ywarn-dead-code"
)
)
)
lazy val `embedded-keycloak` = (project in file("embedded-keycloak"))
.settings(
libraryDependencies ++= Seq(
"com.lihaoyi" %% "requests" % "0.7.0",
"com.lihaoyi" %% "os-lib" % "0.8.0",
"com.lihaoyi" %% "upickle" % "1.4.4",
"com.lihaoyi" %% "ujson" % "1.4.4",
"com.iheart" %% "ficus" % "1.5.1",
//AKKA-DOWNLOADER
"com.typesafe.akka" %% "akka-http" % "10.2.7",
"com.typesafe.akka" %% "akka-stream" % "2.6.18",
//TEST
"org.scalatest" %% "scalatest" % "3.2.10" % Test
),
ThisBuild / Test / parallelExecution := false
)