Skip to content

Commit

Permalink
SBT: make libraryDependencies more idiomatic
Browse files Browse the repository at this point in the history
  • Loading branch information
pepegar committed Mar 6, 2016
1 parent ec10552 commit 5ffdf0e
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,9 @@ version := "0.1.0"

scalaVersion := "2.11.7"

libraryDependencies += "org.typelevel" %% "cats" % "0.4.1"

libraryDependencies ++= Seq("org.specs2" %% "specs2-core" % "3.7.2" % "test")
libraryDependencies ++= Seq(
"org.typelevel" %% "cats" % "0.4.1",
"org.specs2" %% "specs2-core" % "3.7.2" % "test"
)

scalacOptions in Test ++= Seq("-Yrangepos")

0 comments on commit 5ffdf0e

Please sign in to comment.