-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbuild.sbt
46 lines (37 loc) · 1.1 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
44
45
46
import xerial.sbt.Sonatype.sonatypeCentralHost
ThisBuild / scalaVersion := "3.3.4"
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 core = (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.16" % "provided",
"org.scalatest" %% "scalatest" % "3.2.19" % Test,
)
)
lazy val root = (project)
.aggregate(
core
)
.settings(
noPublish
)