-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.sbt
30 lines (26 loc) · 1021 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 := "algebra-weighted-search"
lazy val interview = (project in file(".")).settings(coreSettings : _*)
lazy val commonSettings: Seq[Setting[_]] = Seq(
organization := "net.debasishg",
version := "0.01",
scalaVersion := "2.13.6",
scalafmtOnCompile := true,
scalacOptions in Compile ++= Seq( "-unchecked", "-feature", "-language:postfixOps", "-deprecation" ),
resolvers += Resolver.sonatypeRepo("snapshots")
)
lazy val coreSettings = commonSettings ++ Seq(
name := "algebra-weighted-search",
libraryDependencies ++= Seq(
"org.typelevel" %% "cats-core" % "2.6.1",
"org.typelevel" %% "cats-free" % "2.6.1",
"org.typelevel" %% "cats-effect" % "3.2.9",
"org.typelevel" %% "spire" % "0.17.0",
"com.higher-order" %% "mset" % "0.7.1",
"com.typesafe.scala-logging" %% "scala-logging" % "3.9.4",
"ch.qos.logback" % "logback-classic" % "1.2.3",
kindProjector
)
)
val kindProjector = compilerPlugin(
"org.typelevel" % "kind-projector" % "0.13.2" cross CrossVersion.full
)