-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.sbt
30 lines (24 loc) · 828 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
name := "lib-query"
organization := "com.github.mbryzek"
ThisBuild / scalaVersion := "3.5.2"
ThisBuild / javacOptions ++= Seq("-source", "17", "-target", "17")
version := "0.0.11"
lazy val allScalacOptions = Seq(
"-feature",
"-Xfatal-warnings",
)
lazy val root = project
.in(file("."))
.settings(
resolvers += "scalaz-bintray" at "https://dl.bintray.com/scalaz/releases",
scalafmtOnCompile := true,
Compile / doc / sources := Seq.empty,
Compile / packageDoc / publishArtifact := false,
testOptions += Tests.Argument("-oDF"),
scalacOptions ++= allScalacOptions,
libraryDependencies ++= Seq(
"org.playframework.anorm" %% "anorm-postgres" % "2.7.0",
"org.typelevel" %% "cats-core" % "2.12.0",
"org.scalatestplus.play" %% "scalatestplus-play" % "7.0.1" % Test,
),
)