-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.sbt
44 lines (37 loc) · 1.29 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
41
42
43
ThisBuild / version := "0.1.0-SNAPSHOT"
ThisBuild / scalaVersion := "3.4.0"
lazy val root = (project in file("."))
.aggregate(main, example)
lazy val Versions = new {
val zio = "2.0.21"
val zioHttp = "3.0.0-RC9"
val zioDynamodb = "1.0.0-RC6"
val zioSchemaDerivation = "1.1.1"
val zioSchemaJson = "1.1.1"
}
lazy val main = project
.settings(
name := "reproduce",
libraryDependencies ++= Seq(
"dev.zio" %% "zio-http" % Versions.zioHttp,
"dev.zio" %% "zio" % Versions.zio,
"dev.zio" %% "zio-dynamodb" % Versions.zioDynamodb,
"com.dimafeng" %% "testcontainers-scala-scalatest" % "0.41.2" % Test,
"org.scalatest" %% "scalatest" % "3.2.18" % Test,
"dev.zio" %% "zio-schema-derivation" % Versions.zioSchemaDerivation
),
// libraryDependencies += "org.scala-lang" % "scala-reflect" % scalaVersion.value % "provided"
)
// 'example' project
lazy val example = project
.settings(
name := "example",
libraryDependencies ++= Seq(
"dev.zio" %% "zio" % Versions.zio,
"dev.zio" %% "zio-schema-derivation" % Versions.zioSchemaDerivation,
"dev.zio" %% "zio-dynamodb" % Versions.zioDynamodb,
"dev.zio" %% "zio-http" % Versions.zioHttp,
"dev.zio" %% "zio-schema-json" % Versions.zioSchemaJson,
)
)
.dependsOn(main)