File tree Expand file tree Collapse file tree 1 file changed +6
-9
lines changed Expand file tree Collapse file tree 1 file changed +6
-9
lines changed Original file line number Diff line number Diff line change @@ -22,14 +22,12 @@ version := "0.3.3-SNAPSHOT"
22
22
libraryDependencies +=
23
23
" com.novocode" % " junit-interface" % " 0.7" % " test->default"
24
24
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" )
33
31
}
34
32
}
35
33
@@ -41,7 +39,6 @@ libraryDependencies <+= scalaVersion { sv =>
41
39
}
42
40
}
43
41
44
-
45
42
// Make protobuf an optional library dependency
46
43
libraryDependencies += " com.google.protobuf" % " protobuf-java" % " 2.4.1" % Provided
47
44
You can’t perform that action at this time.
0 commit comments