Use sbt 0.11.3. See #2087
* Temporarily disabled sbt-ls * Removed unused schoir plugin
This commit is contained in:
parent
22692eb95d
commit
623d0f0703
4 changed files with 11 additions and 14 deletions
14
ls.sbt
14
ls.sbt
|
|
@ -1,13 +1,13 @@
|
|||
seq(lsSettings:_*)
|
||||
// seq(lsSettings:_*)
|
||||
|
||||
(description in LsKeys.lsync) := "Akka is the platform for the next generation of event-driven, scalable and fault-tolerant architectures on the JVM."
|
||||
// (description in LsKeys.lsync) := "Akka is the platform for the next generation of event-driven, scalable and fault-tolerant architectures on the JVM."
|
||||
|
||||
(homepage in LsKeys.lsync) := Some(url("http://akka.io"))
|
||||
// (homepage in LsKeys.lsync) := Some(url("http://akka.io"))
|
||||
|
||||
(LsKeys.tags in LsKeys.lsync) := Seq("actors", "stm", "concurrency", "distributed", "fault-tolerance", "scala", "java", "futures", "dataflow", "remoting")
|
||||
// (LsKeys.tags in LsKeys.lsync) := Seq("actors", "stm", "concurrency", "distributed", "fault-tolerance", "scala", "java", "futures", "dataflow", "remoting")
|
||||
|
||||
(LsKeys.docsUrl in LsKeys.lsync) := Some(url("http://akka.io/docs"))
|
||||
// (LsKeys.docsUrl in LsKeys.lsync) := Some(url("http://akka.io/docs"))
|
||||
|
||||
(licenses in LsKeys.lsync) := Seq(("Apache 2", url("http://www.apache.org/licenses/LICENSE-2.0.html")))
|
||||
// (licenses in LsKeys.lsync) := Seq(("Apache 2", url("http://www.apache.org/licenses/LICENSE-2.0.html")))
|
||||
|
||||
(externalResolvers in LsKeys.lsync) := Seq("Typesafe Releases" at "http://repo.typesafe.com/typesafe/releases")
|
||||
// (externalResolvers in LsKeys.lsync) := Seq("Typesafe Releases" at "http://repo.typesafe.com/typesafe/releases")
|
||||
|
|
|
|||
|
|
@ -8,7 +8,6 @@ import sbt._
|
|||
import sbt.Keys._
|
||||
import com.typesafe.sbtmultijvm.MultiJvmPlugin
|
||||
import com.typesafe.sbtmultijvm.MultiJvmPlugin.{ MultiJvm, extraOptions, jvmOptions, scalatestOptions }
|
||||
import com.typesafe.schoir.SchoirPlugin.schoirSettings
|
||||
import com.typesafe.sbtscalariform.ScalariformPlugin
|
||||
import com.typesafe.sbtscalariform.ScalariformPlugin.ScalariformKeys
|
||||
import java.lang.Boolean.getBoolean
|
||||
|
|
@ -79,7 +78,7 @@ object AkkaBuild extends Build {
|
|||
id = "akka-remote",
|
||||
base = file("akka-remote"),
|
||||
dependencies = Seq(actor, actorTests % "test->test", testkit % "test->test"),
|
||||
settings = defaultSettings ++ multiJvmSettings ++ schoirSettings ++ Seq(
|
||||
settings = defaultSettings ++ multiJvmSettings ++ Seq(
|
||||
libraryDependencies ++= Dependencies.remote,
|
||||
// disable parallel tests
|
||||
parallelExecution in Test := false,
|
||||
|
|
@ -98,7 +97,7 @@ object AkkaBuild extends Build {
|
|||
id = "akka-cluster",
|
||||
base = file("akka-cluster"),
|
||||
dependencies = Seq(remote, remote % "test->test", testkit % "test->test"),
|
||||
settings = defaultSettings ++ multiJvmSettings ++ schoirSettings ++ Seq(
|
||||
settings = defaultSettings ++ multiJvmSettings ++ Seq(
|
||||
libraryDependencies ++= Dependencies.cluster,
|
||||
// disable parallel tests
|
||||
parallelExecution in Test := false,
|
||||
|
|
|
|||
|
|
@ -1 +1 @@
|
|||
sbt.version=0.11.2
|
||||
sbt.version=0.11.3
|
||||
|
|
|
|||
|
|
@ -3,12 +3,10 @@ resolvers += Classpaths.typesafeResolver
|
|||
|
||||
addSbtPlugin("com.typesafe.sbtmultijvm" % "sbt-multi-jvm" % "0.1.9")
|
||||
|
||||
addSbtPlugin("com.typesafe.schoir" % "schoir" % "0.1.2")
|
||||
|
||||
addSbtPlugin("com.typesafe.sbtscalariform" % "sbtscalariform" % "0.3.1")
|
||||
|
||||
resolvers ++= Seq(
|
||||
"less is" at "http://repo.lessis.me",
|
||||
"coda" at "http://repo.codahale.com")
|
||||
|
||||
addSbtPlugin("me.lessis" % "ls-sbt" % "0.1.1")
|
||||
// addSbtPlugin("me.lessis" % "ls-sbt" % "0.1.1")
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue