forked from sharongorman/scala-adventures
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.sbt
37 lines (25 loc) · 1.41 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
name := "scala-adventures"
organization := "com.rea"
version := "0.0.1"
resolvers ++= Seq(
"rea nexus release" at "http://nexus.delivery.realestate.com.au/nexus/content/repositories/releases",
Resolver.url("scalasbt", new URL("http://scalasbt.artifactoryonline.com/scalasbt/sbt-plugin-releases"))(Resolver.ivyStylePatterns),
"gphat" at "https://raw.github.com/gphat/mvn-repo/master/releases/",
"Scalaz Bintray Repo" at "http://dl.bintray.com/scalaz/releases")
scalaVersion := "2.12.1"
sbtVersion := "0.13.13"
val specs2Version = "3.8.6"
val circeVersion = "0.7.0"
libraryDependencies ++= Seq(
"io.circe" %% "circe-core" % circeVersion,
"io.circe" %% "circe-generic" % circeVersion,
"io.circe" %% "circe-parser" % circeVersion,
"org.typelevel" %% "cats" % "0.9.0",
"org.specs2" %% "specs2-core" % specs2Version % "test",
"org.specs2" %% "specs2-matcher-extra" % specs2Version % "test"
)
scalacOptions in Test ++= Seq("-Yrangepos")
// Read here for optional dependencies:
// http://etorreborre.github.io/specs2/guide/org.specs2.guide.Runners.html#Dependencies
resolvers ++= Seq("snapshots", "releases").map(Resolver.sonatypeRepo)
initialCommands := "import com.rea.scalaadventures._"