version bumps

This commit is contained in:
Mark Harrah 2012-08-01 09:32:48 -04:00
parent 1b814ae8b1
commit 46ac72ab40
3 changed files with 4 additions and 3 deletions

View File

@ -22,7 +22,7 @@ object Sbt extends Build
crossPaths := false,
concurrentRestrictions in Global += Util.testExclusiveRestriction,
testOptions += Tests.Argument(TestFrameworks.ScalaCheck, "-w", "1"),
javacOptions in Compile ++= Seq("-target", "6", "-source", "6")
javacOptions in compile ++= Seq("-target", "6", "-source", "6")
)
lazy val myProvided = config("provided") intransitive;
@ -200,6 +200,7 @@ object Sbt extends Build
compileInputs in (Compile,sxr) <<= (sources in sxr, compileInputs in sbtSub in Compile, fullClasspath in sxr) map { (srcs, in, cp) =>
in.copy(config = in.config.copy(sources = srcs, classpath = cp.files))
},
compileInputs in (Compile,doc) <<= (compileInputs in (Compile,sxr)).identity,
publishAll <<= inAll(nonRoots, publishLocal.task),
TaskKey[Unit]("build-all") <<= (publishAll, proguard in Proguard, sxr, doc) map { (_,_,_,_) => () }
)

View File

@ -1 +1 @@
sbt.version=0.12.0-M2
sbt.version=0.12.0

View File

@ -1 +1 @@
libraryDependencies += "net.databinder" %% "dispatch-http" % "0.8.5"
libraryDependencies += "net.databinder" %% "dispatch-http" % "0.8.8"