Skip to content

Commit

Permalink
Merge pull request #28 from jsuereth/master
Browse files Browse the repository at this point in the history
Dependency resolution should work for all 2.10.x releases
  • Loading branch information
Rickard Nilsson committed Jul 9, 2012
2 parents ddc32b4 + 9d3385a commit ff36339
Showing 1 changed file with 2 additions and 5 deletions.
7 changes: 2 additions & 5 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -22,11 +22,8 @@ previousArtifact := Some("org.scalacheck" % "scalacheck_2.9.2" % "1.9")
libraryDependencies += "org.scala-tools.testing" % "test-interface" % "0.5"

libraryDependencies <++= (scalaVersion){sVer =>
sVer match {
case "2.10.0-M3" => Seq("org.scala-lang" % "scala-actors" % sVer)
case "2.10.0-M4" => Seq("org.scala-lang" % "scala-actors" % sVer)
case _ => Seq()
}
if(sVer startsWith "2.9") Seq.empty
else Seq("org.scala-lang" % "scala-actors" % sVer)
}

javacOptions ++= Seq("-Xmx1024M")
Expand Down

0 comments on commit ff36339

Please sign in to comment.