-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.sbt
28 lines (24 loc) · 962 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
25
26
27
28
ThisBuild / version := "0.1.0-SNAPSHOT"
ThisBuild / scalaVersion := "2.13.8"
lazy val circeVersion = "0.14.1"
lazy val doobieVersion = "1.0.0-RC1"
lazy val http4sVersion = "0.23.11"
lazy val root = (project in file("."))
.settings(
name := "coursework"
)
libraryDependencies ++= Seq(
"io.circe" %% "circe-generic" % circeVersion,
"io.circe" %% "circe-literal" % circeVersion,
"io.circe" %% "circe-parser" % circeVersion,
"net.ruippeixotog" %% "scala-scraper" % "2.2.1",
"org.tpolecat" %% "doobie-core" % doobieVersion,
"org.tpolecat" %% "doobie-postgres" % doobieVersion,
"org.tpolecat" %% "doobie-specs2" % doobieVersion,
"org.tpolecat" %% "doobie-hikari" % doobieVersion,
"org.http4s" %% "http4s-dsl" % http4sVersion,
"org.http4s" %% "http4s-ember-server" % http4sVersion,
"org.http4s" %% "http4s-ember-client" % http4sVersion,
"org.http4s" %% "http4s-circe" % http4sVersion,
"uz.scala" %% "bot4scala" % "1.0.7"
)