mirror of https://github.com/sbt/sbt.git
version bumps
This commit is contained in:
parent
1b814ae8b1
commit
46ac72ab40
|
|
@ -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 { (_,_,_,_) => () }
|
||||
)
|
||||
|
|
|
|||
|
|
@ -1 +1 @@
|
|||
sbt.version=0.12.0-M2
|
||||
sbt.version=0.12.0
|
||||
|
|
|
|||
|
|
@ -1 +1 @@
|
|||
libraryDependencies += "net.databinder" %% "dispatch-http" % "0.8.5"
|
||||
libraryDependencies += "net.databinder" %% "dispatch-http" % "0.8.8"
|
||||
Loading…
Reference in New Issue