-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbuild.sbt
40 lines (36 loc) · 971 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
29
30
31
32
33
34
35
36
37
38
39
40
import Dependencies.Libraries
name := "stock-exchange-platform"
version := "0.0.1"
scalaVersion := "2.13.7"
idePackagePrefix := Some("org.maximgran.stock_exchange_platform")
scalacOptions ++= List("-Ymacro-annotations", "-Ywarn-unused")
libraryDependencies ++= Seq(
Libraries.cats,
Libraries.catsEffect,
Libraries.catsRetry,
Libraries.log4cats,
Libraries.newtype,
Libraries.squants,
Libraries.derevoCore,
Libraries.logback % Runtime,
Libraries.derevoCats,
Libraries.derevoCirce,
Libraries.monocleCore,
Libraries.monocleLaw,
Libraries.http4sClient,
Libraries.http4sServer,
Libraries.http4sCirce,
Libraries.http4sDsl,
Libraries.http4sJwtAuth,
Libraries.refinedCats,
Libraries.refinedCore,
Libraries.refinedScalacheck,
Libraries.circeRefined,
Libraries.cirisRefined,
Libraries.cirisEnum,
Libraries.circeParser,
Libraries.skunkCore,
Libraries.skunkCirce,
Libraries.redis4catsEffects,
Libraries.redis4catsLog4cats
)