forked from stsatlantis/scala-logger
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.sbt
79 lines (73 loc) · 2.79 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
import org.scalafmt.sbt.ScalafmtPlugin.scalafmtConfigSettings
lazy val commonSettings = Seq(
scalaVersion := "2.12.6",
organization := "com.emarsys",
scalafmtOnCompile := true
)
// logging tests cannot run in parallel as slf4j sometimes creates a SubstituteLogger
// instead of a proper logback Logger instance
parallelExecution in ThisBuild := false
lazy val `scala-logger` = (project in file("."))
.settings(commonSettings: _*)
.settings(
name := "scala-logger",
scalacOptions ++= Seq(
"-deprecation",
"-encoding",
"UTF-8",
"-explaintypes",
"-Yrangepos",
"-feature",
"-Xfuture",
"-Ypartial-unification",
"-language:higherKinds",
"-language:existentials",
"-unchecked",
"-Yno-adapted-args",
"-Xlint:_,-type-parameter-shadow",
"-Xsource:2.13",
"-Ywarn-dead-code",
"-Ywarn-inaccessible",
"-Ywarn-infer-any",
"-Ywarn-nullary-override",
"-Ywarn-nullary-unit",
"-Ywarn-numeric-widen",
"-Ywarn-value-discard",
"-Ywarn-extra-implicit",
"-Ywarn-unused:imports",
"-opt-warnings"
),
libraryDependencies ++= {
Seq(
"org.typelevel" %% "cats-core" % "1.4.0",
"org.typelevel" %% "cats-mtl-core" % "0.4.0",
"org.typelevel" %% "cats-effect" % "1.0.0",
"ch.qos.logback" % "logback-classic" % "1.2.3",
"net.logstash.logback" % "logstash-logback-encoder" % "5.1",
"org.scalatest" %% "scalatest" % "3.0.5" % "test",
"org.scalacheck" %% "scalacheck" % "1.14.0" % "test",
"com.github.mpilquist" %% "simulacrum" % "0.12.0",
"com.propensive" %% "magnolia" % "0.10.0"
)
}
)
inThisBuild(
List(
licenses := Seq("MIT" -> url("http://opensource.org/licenses/MIT")),
homepage := Some(url("https://github.com/emartech/scala-logger")),
developers := List(
Developer("doczir", "Robert Doczi", "[email protected]", url("https://github.com/doczir")),
Developer("miklos-martin", "Miklos Martin", "[email protected]", url("https://github.com/miklos-martin"))
),
scmInfo := Some(
ScmInfo(url("https://github.com/emartech/scala-logger"), "scm:git:[email protected]:emartech/scala-logger.git")
),
// These are the sbt-release-early settings to configure
pgpPublicRing := file("./ci/local.pubring.asc"),
pgpSecretRing := file("./ci/local.secring.asc"),
releaseEarlyWith := SonatypePublisher
)
)
addCompilerPlugin("org.spire-math" %% "kind-projector" % "0.9.6")
addCompilerPlugin("org.scalamacros" % "paradise" % "2.1.0" cross CrossVersion.full)
addCommandAlias("fmt", "all scalafmtSbt scalafmt test:scalafmt")