-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.sbt
24 lines (16 loc) · 835 Bytes
/
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
organization := "com.phasmidsoftware"
name := "KMLDoc"
version := "1.0.3"
scalaVersion := "2.13.8"
Compile / doc / scalacOptions ++= Seq("-Vimplicits", "-implicits-debug", "-implicits-show-all", "-unchecked", "-feature", "-Xcheckinit", "-deprecation", "-Ywarn-dead-code", "-Ywarn-value-discard", "-Ywarn-unused")
scalacOptions ++= Seq("-encoding", "UTF-8")
lazy val scalaModules = "org.scala-lang.modules"
libraryDependencies += scalaModules %% "scala-xml" % "2.1.0"
libraryDependencies += "org.typelevel" %% "cats-effect" % "3.5.2"
libraryDependencies ++= Seq(
"com.phasmidsoftware" %% "flog" % "1.0.8",
"com.phasmidsoftware" %% "args" % "1.0.3",
"ch.qos.logback" % "logback-classic" % "1.4.7" % "runtime",
"com.typesafe.scala-logging" %% "scala-logging" % "3.9.5",
"org.scalatest" %% "scalatest" % "3.2.15" % Test
)