-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.sbt
24 lines (22 loc) · 972 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
ThisBuild / scalaVersion := "2.13.8"
ThisBuild / version := "0.1.0-SNAPSHOT"
ThisBuild / organization := "me.mehmetcc"
ThisBuild / organizationName := "example"
val ZioVersion = "2.0.0-RC6"
val PureconfigVersion = "0.17.1"
val JSoupVersion = "1.15.1"
val ScalaTestVersion = "3.2.12"
lazy val root = (project in file("."))
.settings(
name := "itsy-bitsy",
libraryDependencies ++= Seq(
"dev.zio" %% "zio" % ZioVersion,
"org.jsoup" % "jsoup" % JSoupVersion,
"com.github.pureconfig" %% "pureconfig" % PureconfigVersion,
"io.lemonlabs" %% "scala-uri" % "4.0.2",
"dev.zio" %% "zio-test" % ZioVersion % Test,
"org.scalatest" %% "scalatest" % ScalaTestVersion % "test"
),
addCompilerPlugin("com.olegpy" %% "better-monadic-for" % "0.3.1"),
testFrameworks += new TestFramework("zio.test.sbt.ZTestFramework")
)