-
Notifications
You must be signed in to change notification settings - Fork 5
/
build.sbt
39 lines (32 loc) · 1.31 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
scalaVersion := "2.13.10"
organization := "com.felstar"
name := "zio-restful-webservice"
resolvers += "jitpack" at "https://jitpack.io"
libraryDependencies ++= Seq(
"dev.zio" %% "zio" % "2.0.3",
"dev.zio" %% "zio-json" % "0.3.0",
"dev.zio" %% "zio-http" % "0.0.3",
"io.getquill" %% "quill-zio" % "4.6.0",
"io.getquill" %% "quill-jdbc-zio" % "4.6.0",
"com.h2database" % "h2" % "2.1.214",
"dev.zio" %% "zio-cache" % "0.2.0",
"dev.zio" %% "zio-actors" % "0.1.0",
"io.univalence" %% "zio-spark" % "0.12.0",
"org.apache.spark" %% "spark-core" % "3.3.2",
"org.apache.spark" %% "spark-sql" % "3.3.2",
"com.github.jwt-scala" %% "jwt-core" % "9.1.2",
"com.github.fancellu" % "openai-scala-models" % "v1.1.0.beta3"
)
libraryDependencies ++= Seq(
"dev.zio" %% "zio-test" % "2.0.3",
"dev.zio" %% "zio-test-sbt" % "2.0.3",
"dev.zio" %% "zio-http-testkit" % "0.0.3"
).map(_%Test)
scalacOptions ++= Seq(
"-Ywarn-value-discard",
"-Xfatal-warnings",
"-deprecation"
)
testFrameworks += new TestFramework("zio.test.sbt.ZTestFramework")
addCompilerPlugin("com.olegpy" %% "better-monadic-for" % "0.3.1")
lazy val root = (project in file(".")).enablePlugins(SbtTwirl)