-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.sbt
36 lines (29 loc) · 1.32 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
ThisBuild / scalaVersion := "2.13.8"
ThisBuild / version := "1.0.0"
ThisBuild / organization := "com.example"
ThisBuild / organizationName := "example"
maintainer := "changzhiwin@gmail.com"
val zioVersion = "2.0.4"
val zioLoggingVersion = "2.1.3"
val zioHttpVersion = "0.0.3" // "2.0.0-RC11+159-5abadb95+20221108-1602-SNAPSHOT"
lazy val root = (project in file("."))
.enablePlugins(JavaServerAppPackaging)
.settings(
name := "idiomatic-starter",
libraryDependencies ++= Seq(
"dev.zio" %% "zio" % zioVersion,
"dev.zio" %% "zio-test" % zioVersion % Test,
"dev.zio" %% "zio-test-sbt" % zioVersion % Test,
"dev.zio" %% "zio-test-magnolia" % zioVersion % Test,
"dev.zio" %% "zio-logging" % zioLoggingVersion,
//"dev.zio" %% "zio-logging-slf4j" % zioLoggingVersion,
//"org.slf4j" % "slf4j-reload4j" % "2.0.3",
"dev.zio" %% "zio-json" % "0.3.0",
"dev.zio" %% "zio-http" % zioHttpVersion,
"io.getquill" %% "quill-jdbc-zio" % "4.6.0",
"org.xerial" % "sqlite-jdbc" % "3.28.0",
//"mysql" % "mysql-connector-java" % "8.0.17",
"com.typesafe" % "config" % "1.4.2",
),
testFrameworks += new TestFramework("zio.test.sbt.ZTestFramework")
)