-
Notifications
You must be signed in to change notification settings - Fork 6
/
build.sbt
51 lines (39 loc) · 1.6 KB
/
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
name := "gist"
scalaVersion := "2.11.8"
scalaOrganization := "org.typelevel"
scalaBinaryVersion := "2.11"
organization := "org.hablapps"
version := "0.1-SNAPSHOT"
addCompilerPlugin("org.spire-math" %% "kind-projector" % "0.9.3")
addCompilerPlugin("org.scalamacros" %% "paradise" % "2.1.0" cross CrossVersion.full)
resolvers ++= Seq(
"Speech repo - releases" at "http://repo.hablapps.com/releases")
libraryDependencies ++= Seq(
"org.scalatest" %% "scalatest" % "3.0.0",
"org.typelevel" %% "cats" % "0.9.0",
"com.typesafe.akka" %% "akka-http-experimental" % "2.4.11",
"com.typesafe.akka" %% "akka-http-spray-json-experimental" % "2.4.11",
"com.lihaoyi" %% "sourcecode" % "0.1.2",
"com.github.julien-truffaut" %% "monocle-core" % "1.3.2",
"com.github.julien-truffaut" %% "monocle-generic" % "1.3.2",
"com.github.julien-truffaut" %% "monocle-macro" % "1.3.2",
"com.github.julien-truffaut" %% "monocle-state" % "1.3.2",
"com.github.julien-truffaut" %% "monocle-refined" % "1.3.2",
"com.github.julien-truffaut" %% "monocle-unsafe" % "1.3.2",
"com.github.julien-truffaut" %% "monocle-law" % "1.3.2" % "test",
"org.atnos" %% "eff-cats" % "2.0.0-RC26"
)
dependencyOverrides += "org.scalaz" %% "scalaz-core" % "7.2.7-HABLAPPS"
scalacOptions ++= Seq(
"-unchecked",
"-deprecation",
"-Ypartial-unification",
// "-Xprint:typer",
// "-Xlog-implicit-conversions",
"-feature",
"-language:implicitConversions",
"-language:postfixOps",
"-language:higherKinds")
initialCommands in console := """
|import org.hablapps.gist._
""".stripMargin