-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathbuild.sbt
More file actions
66 lines (48 loc) · 2.12 KB
/
build.sbt
File metadata and controls
66 lines (48 loc) · 2.12 KB
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
import sbt.Keys._
name := "bwhc-rest-api-gateway"
ThisBuild / organization := "de.bwhc"
ThisBuild / scalaVersion := "2.13.8"
ThisBuild / version := "1.1.1"
scalacOptions ++= Seq(
"-encoding", "utf8",
"-unchecked",
"-language:postfixOps",
"-Xfatal-warnings",
"-feature",
"-deprecation"
)
libraryDependencies ++= Seq(
guice,
"org.scalatestplus.play" %% "scalatestplus-play" % "5.0.0" % "test",
"de.bwhc" %% "authentication-api" % "1.0",
"de.bwhc" %% "session-manager-impl" % "1.0",
// Fake Data dependencies
"de.bwhc" %% "mtb-dto-generators" % "1.0",
"de.bwhc" %% "fhir-mappings" % "1.0",
// User Service dependencies
"de.bwhc" %% "user-service-api" % "1.1",
"de.bwhc" %% "user-service-impl" % "1.1",
"de.bwhc" %% "user-service-fs-repos" % "1.1",
// Data Entry/Validation Service dependencies
"de.bwhc" %% "data-entry-service-api" % "1.1.1",
"de.bwhc" %% "data-entry-service-impl" % "1.1.1",
"de.bwhc" %% "data-entry-service-dependencies" % "1.1.1",
// Query Service dependencies
"de.bwhc" %% "query-service-api" % "1.1.1",
"de.bwhc" %% "query-service-impl" % "1.1.1",
// "de.bwhc" %% "bwhc-broker-connector" % "1.1.1",
"de.bwhc" %% "bwhc-connector" % "1.1.1",
"de.bwhc" %% "fs-mtbfile-db" % "1.1.1",
// Catalog dependencies
"de.bwhc" %% "hgnc-impl" % "1.0",
"de.bwhc" %% "icd-catalogs-impl" % "1.1",
"de.bwhc" %% "medication-catalog-impl" % "1.1",
)
dependencyOverrides ++= Seq(
"org.scala-lang.modules" %% "scala-xml" % "2.0.0",
"org.scala-lang.modules" %% "scala-java8-compat" % "1.0.2",
)
lazy val root = (project in file("."))
.enablePlugins(PlayScala)
.settings(
)