Update to sbt 0.11.0-RC1
This commit is contained in:
parent
00d3b87586
commit
1e7f598ee1
6 changed files with 20 additions and 8 deletions
|
|
@ -1,6 +1,10 @@
|
|||
package akka
|
||||
|
||||
import sbt._
|
||||
import Keys._
|
||||
import com.typesafe.sbtmultijvm.MultiJvmPlugin
|
||||
import MultiJvmPlugin.{ MultiJvm, extraOptions, jvmOptions, scalatestOptions }
|
||||
import com.typesafe.sbtscalariform.ScalariformPlugin
|
||||
import ScalariformPlugin.{ format, formatPreferences }
|
||||
import java.lang.Boolean.getBoolean
|
||||
|
||||
|
|
@ -364,7 +368,7 @@ object AkkaBuild extends Build {
|
|||
(dir, s) => {
|
||||
s.log.info("Building reStructuredText documentation...")
|
||||
val exitCode = Process(List("make", "clean", "html", "pdf"), dir) ! s.log
|
||||
if (exitCode != 0) error("Failed to build docs.")
|
||||
if (exitCode != 0) sys.error("Failed to build docs.")
|
||||
s.log.info("Done building docs.")
|
||||
dir
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,3 +1,5 @@
|
|||
package akka
|
||||
|
||||
import sbt._
|
||||
import Keys._
|
||||
import java.io.File
|
||||
|
|
|
|||
|
|
@ -1,3 +1,5 @@
|
|||
package akka
|
||||
|
||||
import sbt._
|
||||
import Keys._
|
||||
import Project.Initialize
|
||||
|
|
|
|||
|
|
@ -1 +1 @@
|
|||
sbt.version=0.10.1
|
||||
sbt.version=0.11.0-RC1
|
||||
|
|
|
|||
10
project/plugins.sbt
Normal file
10
project/plugins.sbt
Normal file
|
|
@ -0,0 +1,10 @@
|
|||
|
||||
resolvers += "Typesafe Repo" at "http://repo.typesafe.com/typesafe/releases/"
|
||||
|
||||
addSbtPlugin("com.typesafe.sbtmultijvm" % "sbt-multi-jvm" % "0.1.6")
|
||||
|
||||
addSbtPlugin("com.typesafe.sbtscalariform" % "sbt-scalariform" % "0.1.3")
|
||||
|
||||
libraryDependencies += "org.scalariform" % "scalariform_2.9.0" % "0.1.0"
|
||||
|
||||
scalacOptions += "-deprecation"
|
||||
|
|
@ -1,6 +0,0 @@
|
|||
|
||||
resolvers += "Typesafe Repo" at "http://repo.typesafe.com/typesafe/releases/"
|
||||
|
||||
libraryDependencies += "com.typesafe.sbt-multi-jvm" %% "sbt-multi-jvm" % "0.1.4"
|
||||
|
||||
libraryDependencies += "com.typesafe.sbt-scalariform" %% "sbt-scalariform" % "0.1.2"
|
||||
Loading…
Add table
Add a link
Reference in a new issue