-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathbuild.sbt
38 lines (28 loc) · 1.07 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
/** Project */
name := "specs2-test"
organization := "org.specs2"
scalaVersion := "2.11.5"
/** Shell */
shellPrompt := { state => "specs2> " }
/** Dependencies */
resolvers ++=
Seq(Resolver.sonatypeRepo("releases"),
Resolver.sonatypeRepo("snapshots"),
Resolver.typesafeRepo("releases"),
"scalaz-bintray" at "http://dl.bintray.com/scalaz/releases")
libraryDependencies <++= version { version =>
Seq(
"org.specs2" %% "specs2-core" ,
"org.specs2" %% "specs2-matcher-extra",
"org.specs2" %% "specs2-gwt" ,
"org.specs2" %% "specs2-html" ,
"org.specs2" %% "specs2-form" ,
"org.specs2" %% "specs2-scalacheck" ,
"org.specs2" %% "specs2-mock" ,
"org.specs2" %% "specs2-junit"
).map(_ % version) ++ Seq("com.chuusai" %% "shapeless" % "2.0.0")
}
scalacOptions ++= Seq("-Yrangepos", "-deprecation", "-unchecked", "-feature", "-language:_")
logBuffered := false
/** Console */
initialCommands in console in Test := "import org.specs2._"