-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathbuild.sbt
29 lines (20 loc) · 882 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
name := "expressions"
organization := "com.github.jedesah"
startYear := Some(2014)
version := "0.1-SNAPSHOT"
scalaVersion := "2.11.6"
resolvers += "scalaz-bintray" at "http://dl.bintray.com/scalaz/releases"
scalacOptions in Test ++= Seq("-Yrangepos")
libraryDependencies ++= Seq(
"org.scalaz" %% "scalaz-core" % "7.1.2",
"org.scala-lang" % "scala-reflect" % scalaVersion.value,
"org.specs2" %% "specs2-core" % "3.6" % "test",
"org.specs2" %% "specs2-scalacheck" % "3.6" % "test",
// This dependency is for the build server
// I would like to explore adding it only on the build server
"org.specs2" %% "specs2-junit" % "3.6" % "test",
"com.chuusai" %% "shapeless" % "2.1.0",
"org.typelevel" %% "shapeless-scalaz" % "0.3",
"org.scala-lang" % "scala-compiler" % scalaVersion.value % "test"
)
initialCommands += "import scala.reflect.runtime.universe._"