forked from zio/zio-logging
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.sbt
36 lines (34 loc) · 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
inThisBuild(
List(
organization := "dev.zio",
licenses := List("Apache-2.0" -> url("http://www.apache.org/licenses/LICENSE-2.0")),
developers := List(
Developer("jdegoes", "John De Goes", "[email protected]", url("http://degoes.net")),
Developer(
"pshemass",
"Przemyslaw Wierzbicki",
url("https://github.com/pshemass")
)
),
pgpPublicRing := file("/tmp/public.asc"),
pgpSecretRing := file("/tmp/secret.asc"),
releaseEarlyWith := SonatypePublisher,
scmInfo := Some(
ScmInfo(
url("https://github.com/zio/zio-logging/"),
"scm:git:[email protected]:zio/zio-logging.git"
)
)
)
)
addCommandAlias("fmt", "all scalafmtSbt scalafmt test:scalafmt")
addCommandAlias("check", "all scalafmtSbtCheck scalafmtCheck test:scalafmtCheck")
lazy val zioLogging = project
.in(file("."))
.settings(
name := "zio-logging",
libraryDependencies ++= Seq(
"dev.zio" %% "zio" % "1.0.0-RC12-1"
)
)