Skip to content

Commit abbd434

Browse files
committed
Simpler sbt
1 parent bf73aea commit abbd434

File tree

1 file changed

+6
-9
lines changed

1 file changed

+6
-9
lines changed

build.sbt

Lines changed: 6 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -22,14 +22,12 @@ version := "0.3.3-SNAPSHOT"
2222
libraryDependencies +=
2323
"com.novocode" % "junit-interface" % "0.7" % "test->default"
2424

25-
libraryDependencies <++= scalaBinaryVersion { bv =>
26-
bv match {
27-
case "2.10" => {
28-
Seq()
29-
}
30-
case _ => {
31-
Seq("org.scala-lang.plugins" % s"scala-continuations-library_$bv" % "1.0.1")
32-
}
25+
libraryDependencies <++= scalaBinaryVersion {
26+
case "2.10" => {
27+
Seq()
28+
}
29+
case bv => {
30+
Seq("org.scala-lang.plugins" % s"scala-continuations-library_$bv" % "1.0.1")
3331
}
3432
}
3533

@@ -41,7 +39,6 @@ libraryDependencies <+= scalaVersion { sv =>
4139
}
4240
}
4341

44-
4542
// Make protobuf an optional library dependency
4643
libraryDependencies += "com.google.protobuf" % "protobuf-java" % "2.4.1" % Provided
4744

0 commit comments

Comments
 (0)