-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.sbt
More file actions
33 lines (28 loc) · 1.21 KB
/
build.sbt
File metadata and controls
33 lines (28 loc) · 1.21 KB
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
val CatsVersion = "2.0.0-RC1"
val LogbackVersion = "1.2.3"
val ScalaLogVersion = "3.9.2"
val ConfigFactoryVersion = "1.3.4"
val ScalaTestVersion = "3.0.8"
val ScalaCheckVersion = "1.14.0"
resolvers += Resolver.sonatypeRepo("releases")
resolvers += Resolver.sonatypeRepo("snapshots")
organization := "CloverGroup"
name := "zio-core"
version := "0.0.1"
scalaVersion := "2.12.8"
maxErrors := 3
libraryDependencies ++= Seq(
"org.scalactic" %% "scalactic" % ScalaTestVersion,
"org.scalatest" %% "scalatest" % ScalaTestVersion % "test",
"org.scalacheck" %% "scalacheck" % ScalaCheckVersion % "test",
"org.typelevel" %% "cats-core" % CatsVersion,
"ch.qos.logback" % "logback-classic" % LogbackVersion,
"com.typesafe.scala-logging" %% "scala-logging" % ScalaLogVersion,
"com.typesafe" % "config" % ConfigFactoryVersion
)
scalacOptions --= Seq(
"-Xfatal-warnings"
)
addCompilerPlugin("org.scalamacros" % "paradise" % "2.1.1" cross CrossVersion.full)
addCommandAlias("fmt", "all scalafmtSbt scalafmt test:scalafmt")
addCommandAlias("chk", "all scalafmtSbtCheck scalafmtCheck test:scalafmtCheck")