-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathbuild.sbt
More file actions
33 lines (30 loc) · 1.26 KB
/
Copy pathbuild.sbt
File metadata and controls
33 lines (30 loc) · 1.26 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
scalaVersion := "2.12.10"
enablePlugins(GraalVMNativeImagePlugin)
enablePlugins(DockerPlugin)
lazy val root = (project in file("."))
.settings(
name := "apply-at-vdb",
libraryDependencies ++= Seq(
"org.typelevel" %% "cats-core" % "2.1.1",
"org.typelevel" %% "cats-effect" % "2.1.3",
"org.http4s" %% "http4s-blaze-server" % "0.21.3",
"org.http4s" %% "http4s-dsl" % "0.21.3",
"com.softwaremill.sttp.tapir" %% "tapir-core" % "0.14.3",
"com.softwaremill.sttp.tapir" %% "tapir-http4s-server" % "0.14.3",
"com.softwaremill.sttp.tapir" %% "tapir-json-circe" % "0.14.3",
"io.circe" %% "circe-core" % "0.12.3",
"io.circe" %% "circe-generic" % "0.12.3",
"io.circe" %% "circe-parser" % "0.12.3",
"ch.qos.logback" % "logback-classic" % "1.2.3",
"ch.qos.logback" % "logback-core" % "1.2.3",
"com.github.pureconfig" %% "pureconfig" % "0.12.3"
)
)
graalVMNativeImageOptions ++= Seq(
"--no-fallback",
"--allow-incomplete-classpath",
"-H:ResourceConfigurationFiles=../../configs/resource-config.json",
"-H:ReflectionConfigurationFiles=../../configs/reflect-config.json",
"-H:JNIConfigurationFiles=../../configs/jni-config.json",
"-H:DynamicProxyConfigurationFiles=../../configs/proxy-config.json"
)