-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.sbt
29 lines (23 loc) · 978 Bytes
/
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
ThisBuild / version := "0.1.0"
ThisBuild / scalaVersion := "2.13.10"
publishTo := sonatypePublishToBundle.value
ThisBuild / sonatypeCredentialHost := "s01.oss.sonatype.org"
ThisBuild / organization := "com.raisondata.openai"
sonatypeCredentialHost := "s01.oss.sonatype.org"
sonatypeRepository := "https://s01.oss.sonatype.org/service/local"
lazy val root = (project in file("."))
.settings(
name := "openai-zio",
libraryDependencies ++= Seq(
"dev.zio" %% "zio" % "2.0.1",
"dev.zio" %% "zio-streams" % "2.0.1",
"dev.zio" %% "zio-logging" % "2.0.1",
"com.softwaremill.sttp.client4" %% "zio" % "4.0.0-M1", // for ZIO 2.x
"com.softwaremill.sttp.client4" %% "circe" % "4.0.0-M1",
"com.softwaremill.retry" %% "retry" % "0.3.6",
"io.circe" %% "circe-core" % "0.14.1",
"io.circe" %% "circe-generic" % "0.14.1",
"dev.zio" %% "zio-test" % "2.0.12" % Test,
"dev.zio" %% "zio-mock" % "1.0.0-RC10" % Test
)
)