-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbuild.sbt
43 lines (37 loc) · 1.16 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 xerial.sbt.Sonatype.sonatypeCentralHost
ThisBuild / scalaVersion := "3.3.5"
ThisBuild / organization := "io.github.igor-vovk"
ThisBuild / homepage := Some(url("https://github.com/igor-vovk/cats-effect-simple-di"))
ThisBuild / licenses := List("Apache-2.0" -> url("http://www.apache.org/licenses/LICENSE-2.0"))
ThisBuild / developers := List(
Developer(
"igor-vovk",
"Ihor Vovk",
url("https://ivovk.me"),
)
)
ThisBuild / sonatypeCredentialHost := sonatypeCentralHost
lazy val noPublish = List(
publish := {},
publishLocal := {},
publishArtifact := false,
publish / skip := true,
)
lazy val catsEffectSimpleDiCore = (project in file("."))
.settings(
moduleName := "cats-effect-simple-di",
libraryDependencies ++= Seq(
"org.typelevel" %% "cats-effect" % "3.5.7" % Provided,
"org.typelevel" %% "log4cats-slf4j" % "2.7.0" % Provided,
"ch.qos.logback" % "logback-classic" % "1.5.17" % Provided,
"org.scalatest" %% "scalatest" % "3.2.19" % Test,
),
)
lazy val root = (project)
.aggregate(
catsEffectSimpleDiCore
)
.settings(
noPublish
)