-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.sbt
More file actions
22 lines (21 loc) · 768 Bytes
/
build.sbt
File metadata and controls
22 lines (21 loc) · 768 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
import Dependencies._
lazy val root = (project in file(".")).
settings(
inThisBuild(List(
organization := "io.trsc",
scalaVersion := "2.12.4",
version := "0.1.0-SNAPSHOT",
scalacOptions ++= ScalacOptions.opts,
scalacOptions in (Compile, console) ~= (_.filterNot(ScalacOptions.excludeInConsoleAndCompile)),
addCompilerPlugin("org.spire-math" %% "kind-projector" % "0.9.5"),
shellPrompt := { state ⇒
s"[${scala.Console.CYAN}%s${scala.Console.RESET}] λ " format {
Project.extract(state).getOpt(sbt.Keys.name) getOrElse {
Project.extract(state).currentProject.id
}
}
}
)),
name := "http4stryout",
libraryDependencies ++= runtimeDeps ++ testDeps
)