This repository has been archived by the owner on Aug 14, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbuild.sbt
43 lines (39 loc) · 1.45 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
import com.typesafe.sbt.packager.docker._
name := "helios"
Global / onChangedBuildSource := ReloadOnSourceChanges
inThisBuild(
Seq(
scalaVersion := "3.3.1",
semanticdbEnabled := true
)
)
addCommandAlias("fmt", "all scalafmtSbt scalafmtAll")
addCommandAlias("fix", "scalafixAll")
lazy val helios = project
.enablePlugins(JavaAppPackaging, DockerPlugin)
.settings(
libraryDependencies ++= Seq(
"co.fs2" %% "fs2-core" % "3.9.2",
"co.fs2" %% "fs2-io" % "3.9.2",
"com.luckycatlabs" % "SunriseSunsetCalculator" % "1.2",
"dev.zio" %% "zio" % "2.0.18",
"dev.zio" %% "zio-interop-cats" % "23.1.0.0",
"dev.zio" %% "zio-json" % "0.6.2",
"dev.zio" %% "zio-stacktracer" % "2.0.18",
"dev.zio" %% "zio-streams" % "2.0.18",
"nl.vroste" %% "rezilience" % "0.9.4",
"org.http4s" %% "http4s-client" % "0.23.23",
"org.http4s" %% "http4s-core" % "0.23.23",
"org.http4s" %% "http4s-dsl" % "0.23.23",
"org.http4s" %% "http4s-ember-client" % "0.23.23",
"org.typelevel" %% "case-insensitive" % "1.4.0",
"org.typelevel" %% "cats-core" % "2.10.0",
"org.typelevel" %% "cats-effect" % "3.5.2",
"org.typelevel" %% "cats-effect-kernel" % "3.5.2",
"org.slf4j" % "slf4j-simple" % "2.0.9" % Runtime,
"dev.zio" %% "zio-test" % "2.0.18" % Test,
"dev.zio" %% "zio-test-sbt" % "2.0.18" % Test
),
run / fork := true,
dockerBaseImage := "eclipse-temurin:17-jre-jammy"
)