-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathbuild.sbt
20 lines (15 loc) · 853 Bytes
/
build.sbt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
lazy val doobieVersion = "0.8.0-RC1"
scalaVersion := "2.13.15"
crossScalaVersions := Seq("2.12.20", "2.13.15")
console / initialCommands := "import com.htmlism.lexorank._"
libraryDependencies += "org.tpolecat" %% "doobie-core" % doobieVersion
libraryDependencies += "org.tpolecat" %% "doobie-h2" % doobieVersion
libraryDependencies += "org.scalatest" %% "scalatest" % "3.2.16" % "test"
libraryDependencies += "org.tpolecat" %% "doobie-scalatest" % doobieVersion % "test"
libraryDependencies += "org.scalacheck" %% "scalacheck" % "1.17.0" % "test"
libraryDependencies += "org.scalatestplus" %% "scalacheck-1-14" % "3.1.1.1" % "test"
// scaladoc enhancements
Compile / doc / scalacOptions ++= Seq(
"-groups", // enable support for grouped members
"-diagrams" // generate type hierarchy diagrams
)