-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbuild.sbt
27 lines (24 loc) · 851 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
import Dependencies._
ThisBuild / scalaVersion := "2.13.8"
ThisBuild / version := "0.1.0-SNAPSHOT"
ThisBuild / organization := "com.example"
ThisBuild / organizationName := "example"
lazy val root = (project in file("."))
.settings(
name := "book-store",
libraryDependencies += scalaTest % Test,
libraryDependencies += "ch.qos.logback" % "logback-classic" % "1.2.3",
libraryDependencies ++= http4s ++
pureConfig ++
doobie ++
circe ++
log4Cats ++
cookies ++
redis ++
weaverTest ++
newType ++
jwtAuth,
testFrameworks += new TestFramework("weaver.framework.CatsEffect"),
scalacOptions ++= List("-Ymacro-annotations", "-Yrangepos", "-Wconf:cat=unused:info")
)
// See https://www.scala-sbt.org/1.x/docs/Using-Sonatype.html for instructions on how to publish to Sonatype.