=pro #15031 separate sbt build file for every module
This commit is contained in:
parent
98463b2f5e
commit
fdcd964165
18 changed files with 341 additions and 137 deletions
11
akka-actor-tests/build.sbt
Normal file
11
akka-actor-tests/build.sbt
Normal file
|
|
@ -0,0 +1,11 @@
|
||||||
|
import akka.{ AkkaBuild, Dependencies, Formatting, Unidoc }
|
||||||
|
|
||||||
|
AkkaBuild.defaultSettings
|
||||||
|
|
||||||
|
Formatting.formatSettings
|
||||||
|
|
||||||
|
Unidoc.scaladocSettings
|
||||||
|
|
||||||
|
publishArtifact in Compile := false
|
||||||
|
|
||||||
|
libraryDependencies ++= Dependencies.actorTests
|
||||||
16
akka-actor/build.sbt
Normal file
16
akka-actor/build.sbt
Normal file
|
|
@ -0,0 +1,16 @@
|
||||||
|
import akka.{ AkkaBuild, Formatting, OSGi, Unidoc, Dependencies }
|
||||||
|
import com.typesafe.tools.mima.plugin.MimaKeys
|
||||||
|
|
||||||
|
AkkaBuild.defaultSettings
|
||||||
|
|
||||||
|
Formatting.formatSettings
|
||||||
|
|
||||||
|
Unidoc.scaladocSettings
|
||||||
|
|
||||||
|
Unidoc.javadocSettings
|
||||||
|
|
||||||
|
OSGi.actor
|
||||||
|
|
||||||
|
libraryDependencies ++= Dependencies.actor
|
||||||
|
|
||||||
|
MimaKeys.previousArtifact := akkaPreviousArtifact("akka-actor")
|
||||||
16
akka-agent/build.sbt
Normal file
16
akka-agent/build.sbt
Normal file
|
|
@ -0,0 +1,16 @@
|
||||||
|
import akka.{ AkkaBuild, Dependencies, Formatting, OSGi, Unidoc }
|
||||||
|
import com.typesafe.tools.mima.plugin.MimaKeys
|
||||||
|
|
||||||
|
AkkaBuild.defaultSettings
|
||||||
|
|
||||||
|
Formatting.formatSettings
|
||||||
|
|
||||||
|
Unidoc.scaladocSettingsNoVerificationOfDiagrams
|
||||||
|
|
||||||
|
Unidoc.javadocSettings
|
||||||
|
|
||||||
|
OSGi.agent
|
||||||
|
|
||||||
|
libraryDependencies ++= Dependencies.agent
|
||||||
|
|
||||||
|
MimaKeys.previousArtifact := akkaPreviousArtifact("akka-agent")
|
||||||
16
akka-camel/build.sbt
Normal file
16
akka-camel/build.sbt
Normal file
|
|
@ -0,0 +1,16 @@
|
||||||
|
import akka.{ AkkaBuild, Dependencies, Formatting, OSGi, Unidoc }
|
||||||
|
import com.typesafe.tools.mima.plugin.MimaKeys
|
||||||
|
|
||||||
|
AkkaBuild.defaultSettings
|
||||||
|
|
||||||
|
Formatting.formatSettings
|
||||||
|
|
||||||
|
Unidoc.scaladocSettings
|
||||||
|
|
||||||
|
Unidoc.javadocSettings
|
||||||
|
|
||||||
|
OSGi.camel
|
||||||
|
|
||||||
|
libraryDependencies ++= Dependencies.camel
|
||||||
|
|
||||||
|
MimaKeys.previousArtifact := akkaPreviousArtifact("akka-kernel")
|
||||||
28
akka-cluster/build.sbt
Normal file
28
akka-cluster/build.sbt
Normal file
|
|
@ -0,0 +1,28 @@
|
||||||
|
import akka.{ AkkaBuild, Dependencies, Formatting, OSGi, MultiNode, Unidoc }
|
||||||
|
import com.typesafe.sbt.SbtMultiJvm.MultiJvmKeys._
|
||||||
|
import com.typesafe.tools.mima.plugin.MimaKeys
|
||||||
|
|
||||||
|
AkkaBuild.defaultSettings
|
||||||
|
|
||||||
|
Formatting.formatSettings
|
||||||
|
|
||||||
|
Unidoc.scaladocSettings
|
||||||
|
|
||||||
|
Unidoc.javadocSettings
|
||||||
|
|
||||||
|
MultiNode.multiJvmSettings
|
||||||
|
|
||||||
|
OSGi.cluster
|
||||||
|
|
||||||
|
libraryDependencies ++= Dependencies.cluster
|
||||||
|
|
||||||
|
MimaKeys.previousArtifact := akkaPreviousArtifact("akka-cluster")
|
||||||
|
|
||||||
|
// disable parallel tests
|
||||||
|
parallelExecution in Test := false
|
||||||
|
|
||||||
|
extraOptions in MultiJvm <<= (sourceDirectory in MultiJvm) { src =>
|
||||||
|
(name: String) => (src ** (name + ".conf")).get.headOption.map("-Dakka.config=" + _.absolutePath).toSeq
|
||||||
|
}
|
||||||
|
|
||||||
|
scalatestOptions in MultiJvm := MultiNode.defaultMultiJvmScalatestOptions.value
|
||||||
27
akka-contrib/build.sbt
Normal file
27
akka-contrib/build.sbt
Normal file
|
|
@ -0,0 +1,27 @@
|
||||||
|
import akka.{ AkkaBuild, Dependencies, Formatting, MultiNode, Unidoc }
|
||||||
|
import com.typesafe.tools.mima.plugin.MimaKeys
|
||||||
|
|
||||||
|
AkkaBuild.defaultSettings
|
||||||
|
|
||||||
|
Formatting.formatSettings
|
||||||
|
|
||||||
|
Unidoc.scaladocSettingsNoVerificationOfDiagrams
|
||||||
|
|
||||||
|
Unidoc.javadocSettings
|
||||||
|
|
||||||
|
MultiNode.multiJvmSettings
|
||||||
|
|
||||||
|
libraryDependencies ++= Dependencies.contrib
|
||||||
|
|
||||||
|
MimaKeys.reportBinaryIssues := () // disable bin comp check
|
||||||
|
|
||||||
|
description := """|
|
||||||
|
|This subproject provides a home to modules contributed by external
|
||||||
|
|developers which may or may not move into the officially supported code
|
||||||
|
|base over time. A module in this subproject doesn't have to obey the rule
|
||||||
|
|of staying binary compatible between minor releases. Breaking API changes
|
||||||
|
|may be introduced in minor releases without notice as we refine and
|
||||||
|
|simplify based on your feedback. A module may be dropped in any release
|
||||||
|
|without prior deprecation. The Typesafe subscription does not cover
|
||||||
|
|support for these modules.
|
||||||
|
|""".stripMargin
|
||||||
26
akka-docs/build.sbt
Normal file
26
akka-docs/build.sbt
Normal file
|
|
@ -0,0 +1,26 @@
|
||||||
|
import akka.{ AkkaBuild, Dependencies, Formatting, SphinxDoc }
|
||||||
|
import com.typesafe.sbt.SbtScalariform.ScalariformKeys
|
||||||
|
import com.typesafe.sbt.SbtSite.site
|
||||||
|
import com.typesafe.tools.mima.plugin.MimaKeys
|
||||||
|
|
||||||
|
AkkaBuild.defaultSettings
|
||||||
|
|
||||||
|
Formatting.docFormatSettings
|
||||||
|
|
||||||
|
site.settings
|
||||||
|
|
||||||
|
site.sphinxSupport()
|
||||||
|
|
||||||
|
site.publishSite
|
||||||
|
|
||||||
|
SphinxDoc.docsSettings
|
||||||
|
|
||||||
|
SphinxDoc.sphinxPreprocessing
|
||||||
|
|
||||||
|
libraryDependencies ++= Dependencies.docs
|
||||||
|
|
||||||
|
publishArtifact in Compile := false
|
||||||
|
|
||||||
|
unmanagedSourceDirectories in ScalariformKeys.format in Test <<= unmanagedSourceDirectories in Test
|
||||||
|
|
||||||
|
MimaKeys.reportBinaryIssues := () // disable bin comp check
|
||||||
14
akka-kernel/build.sbt
Normal file
14
akka-kernel/build.sbt
Normal file
|
|
@ -0,0 +1,14 @@
|
||||||
|
import akka.{ AkkaBuild, Dependencies, Formatting, Unidoc }
|
||||||
|
import com.typesafe.tools.mima.plugin.MimaKeys
|
||||||
|
|
||||||
|
AkkaBuild.defaultSettings
|
||||||
|
|
||||||
|
Formatting.formatSettings
|
||||||
|
|
||||||
|
Unidoc.scaladocSettingsNoVerificationOfDiagrams
|
||||||
|
|
||||||
|
Unidoc.javadocSettings
|
||||||
|
|
||||||
|
libraryDependencies ++= Dependencies.kernel
|
||||||
|
|
||||||
|
MimaKeys.previousArtifact := akkaPreviousArtifact("akka-kernel")
|
||||||
12
akka-multi-node-testkit/build.sbt
Normal file
12
akka-multi-node-testkit/build.sbt
Normal file
|
|
@ -0,0 +1,12 @@
|
||||||
|
import akka.{AkkaBuild, Formatting, Unidoc, OSGi}
|
||||||
|
import com.typesafe.tools.mima.plugin.MimaKeys
|
||||||
|
|
||||||
|
AkkaBuild.defaultSettings
|
||||||
|
|
||||||
|
Formatting.formatSettings
|
||||||
|
|
||||||
|
Unidoc.scaladocSettings
|
||||||
|
|
||||||
|
Unidoc.javadocSettings
|
||||||
|
|
||||||
|
MimaKeys.previousArtifact := akkaPreviousArtifact("akka-multi-node-testkit")
|
||||||
18
akka-osgi/build.sbt
Normal file
18
akka-osgi/build.sbt
Normal file
|
|
@ -0,0 +1,18 @@
|
||||||
|
import akka.{ AkkaBuild, Dependencies, Formatting, OSGi, Unidoc }
|
||||||
|
import com.typesafe.tools.mima.plugin.MimaKeys
|
||||||
|
|
||||||
|
AkkaBuild.defaultSettings
|
||||||
|
|
||||||
|
Formatting.formatSettings
|
||||||
|
|
||||||
|
Unidoc.scaladocSettings
|
||||||
|
|
||||||
|
Unidoc.javadocSettings
|
||||||
|
|
||||||
|
OSGi.osgi
|
||||||
|
|
||||||
|
libraryDependencies ++= Dependencies.osgi
|
||||||
|
|
||||||
|
parallelExecution in Test := false
|
||||||
|
|
||||||
|
MimaKeys.reportBinaryIssues := () // disable bin comp check
|
||||||
23
akka-persistence/build.sbt
Normal file
23
akka-persistence/build.sbt
Normal file
|
|
@ -0,0 +1,23 @@
|
||||||
|
import akka.{ AkkaBuild, Dependencies, Formatting, OSGi, Unidoc }
|
||||||
|
import com.typesafe.tools.mima.plugin.MimaKeys
|
||||||
|
import akka.MultiNode
|
||||||
|
|
||||||
|
AkkaBuild.defaultSettings
|
||||||
|
|
||||||
|
AkkaBuild.experimentalSettings
|
||||||
|
|
||||||
|
Formatting.formatSettings
|
||||||
|
|
||||||
|
Unidoc.scaladocSettings
|
||||||
|
|
||||||
|
Unidoc.javadocSettings
|
||||||
|
|
||||||
|
OSGi.persistence
|
||||||
|
|
||||||
|
libraryDependencies ++= Dependencies.persistence
|
||||||
|
|
||||||
|
MimaKeys.previousArtifact := akkaPreviousArtifact("akka-persistence-experimental")
|
||||||
|
|
||||||
|
fork in Test := true
|
||||||
|
|
||||||
|
javaOptions in Test := MultiNode.defaultMultiJvmOptions
|
||||||
26
akka-remote-tests/build.sbt
Normal file
26
akka-remote-tests/build.sbt
Normal file
|
|
@ -0,0 +1,26 @@
|
||||||
|
import akka.{ AkkaBuild, Dependencies, Formatting, MultiNode, Unidoc }
|
||||||
|
import com.typesafe.sbt.SbtMultiJvm.MultiJvmKeys._
|
||||||
|
import com.typesafe.tools.mima.plugin.MimaKeys
|
||||||
|
|
||||||
|
AkkaBuild.defaultSettings
|
||||||
|
|
||||||
|
Formatting.formatSettings
|
||||||
|
|
||||||
|
Unidoc.scaladocSettings
|
||||||
|
|
||||||
|
MultiNode.multiJvmSettings
|
||||||
|
|
||||||
|
libraryDependencies ++= Dependencies.remoteTests
|
||||||
|
|
||||||
|
// disable parallel tests
|
||||||
|
parallelExecution in Test := false
|
||||||
|
|
||||||
|
extraOptions in MultiJvm <<= (sourceDirectory in MultiJvm) { src =>
|
||||||
|
(name: String) => (src ** (name + ".conf")).get.headOption.map("-Dakka.config=" + _.absolutePath).toSeq
|
||||||
|
}
|
||||||
|
|
||||||
|
scalatestOptions in MultiJvm := MultiNode.defaultMultiJvmScalatestOptions.value
|
||||||
|
|
||||||
|
publishArtifact in Compile := false
|
||||||
|
|
||||||
|
MimaKeys.reportBinaryIssues := () // disable bin comp check
|
||||||
18
akka-remote/build.sbt
Normal file
18
akka-remote/build.sbt
Normal file
|
|
@ -0,0 +1,18 @@
|
||||||
|
import akka.{AkkaBuild, Dependencies, Formatting, Unidoc, OSGi}
|
||||||
|
import com.typesafe.tools.mima.plugin.MimaKeys
|
||||||
|
|
||||||
|
AkkaBuild.defaultSettings
|
||||||
|
|
||||||
|
Formatting.formatSettings
|
||||||
|
|
||||||
|
Unidoc.scaladocSettings
|
||||||
|
|
||||||
|
Unidoc.javadocSettings
|
||||||
|
|
||||||
|
OSGi.remote
|
||||||
|
|
||||||
|
libraryDependencies ++= Dependencies.remote
|
||||||
|
|
||||||
|
parallelExecution in Test := false
|
||||||
|
|
||||||
|
MimaKeys.previousArtifact := akkaPreviousArtifact("akka-remote")
|
||||||
16
akka-slf4j/build.sbt
Normal file
16
akka-slf4j/build.sbt
Normal file
|
|
@ -0,0 +1,16 @@
|
||||||
|
import akka.{ AkkaBuild, Dependencies, Formatting, OSGi, Unidoc }
|
||||||
|
import com.typesafe.tools.mima.plugin.MimaKeys
|
||||||
|
|
||||||
|
AkkaBuild.defaultSettings
|
||||||
|
|
||||||
|
Formatting.formatSettings
|
||||||
|
|
||||||
|
Unidoc.scaladocSettings
|
||||||
|
|
||||||
|
Unidoc.javadocSettings
|
||||||
|
|
||||||
|
OSGi.slf4j
|
||||||
|
|
||||||
|
libraryDependencies ++= Dependencies.slf4j
|
||||||
|
|
||||||
|
MimaKeys.previousArtifact := akkaPreviousArtifact("akka-slf4j")
|
||||||
19
akka-testkit/build.sbt
Normal file
19
akka-testkit/build.sbt
Normal file
|
|
@ -0,0 +1,19 @@
|
||||||
|
import akka.{ AkkaBuild, Formatting, OSGi, Unidoc, Dependencies }
|
||||||
|
import com.typesafe.tools.mima.plugin.MimaKeys
|
||||||
|
|
||||||
|
AkkaBuild.defaultSettings
|
||||||
|
|
||||||
|
Formatting.formatSettings
|
||||||
|
|
||||||
|
Unidoc.scaladocSettings
|
||||||
|
|
||||||
|
Unidoc.javadocSettings
|
||||||
|
|
||||||
|
OSGi.testkit
|
||||||
|
|
||||||
|
// to fix scaladoc generation
|
||||||
|
libraryDependencies ++= Dependencies.testkit
|
||||||
|
|
||||||
|
initialCommands += "import akka.testkit._"
|
||||||
|
|
||||||
|
MimaKeys.previousArtifact := akkaPreviousArtifact("akka-testkit")
|
||||||
16
akka-zeromq/build.sbt
Normal file
16
akka-zeromq/build.sbt
Normal file
|
|
@ -0,0 +1,16 @@
|
||||||
|
import akka.{ AkkaBuild, Dependencies, Formatting, OSGi, Unidoc }
|
||||||
|
import com.typesafe.tools.mima.plugin.MimaKeys
|
||||||
|
|
||||||
|
AkkaBuild.defaultSettings
|
||||||
|
|
||||||
|
Formatting.formatSettings
|
||||||
|
|
||||||
|
Unidoc.scaladocSettings
|
||||||
|
|
||||||
|
Unidoc.javadocSettings
|
||||||
|
|
||||||
|
OSGi.zeroMQ
|
||||||
|
|
||||||
|
libraryDependencies ++= Dependencies.zeroMQ
|
||||||
|
|
||||||
|
MimaKeys.previousArtifact := akkaPreviousArtifact("akka-zeromq")
|
||||||
|
|
@ -20,7 +20,7 @@ object ActivatorDist {
|
||||||
(thisProjectRef, baseDirectory, activatorDistDirectory, version, buildStructure, streams) map {
|
(thisProjectRef, baseDirectory, activatorDistDirectory, version, buildStructure, streams) map {
|
||||||
(project, projectBase, activatorDistDirectory, version, structure, s) => {
|
(project, projectBase, activatorDistDirectory, version, structure, s) => {
|
||||||
val directories = projectBase.listFiles(DirectoryFilter).filter(dir => (dir / "activator.properties").exists)
|
val directories = projectBase.listFiles(DirectoryFilter).filter(dir => (dir / "activator.properties").exists)
|
||||||
val rootGitignoreLines = IO.readLines(AkkaBuild.akka.base / ".gitignore")
|
val rootGitignoreLines = IO.readLines(AkkaBuild.root.base / ".gitignore")
|
||||||
for (dir <- directories) {
|
for (dir <- directories) {
|
||||||
val localGitignoreLines = if ((dir / ".gitignore").exists) IO.readLines(dir / ".gitignore") else Nil
|
val localGitignoreLines = if ((dir / ".gitignore").exists) IO.readLines(dir / ".gitignore") else Nil
|
||||||
val gitignoreFileFilter = (".gitignore" :: localGitignoreLines ::: rootGitignoreLines).
|
val gitignoreFileFilter = (".gitignore" :: localGitignoreLines ::: rootGitignoreLines).
|
||||||
|
|
@ -36,7 +36,7 @@ object ActivatorDist {
|
||||||
s.log.info(s"zipping: $targetDir -> $targetFile")
|
s.log.info(s"zipping: $targetDir -> $targetFile")
|
||||||
Dist.zip(targetDir, targetFile)
|
Dist.zip(targetDir, targetFile)
|
||||||
}
|
}
|
||||||
|
|
||||||
activatorDistDirectory
|
activatorDistDirectory
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -6,21 +6,19 @@ package akka
|
||||||
|
|
||||||
import sbt._
|
import sbt._
|
||||||
import sbt.Keys._
|
import sbt.Keys._
|
||||||
import com.typesafe.sbt.SbtMultiJvm.MultiJvmKeys.{ MultiJvm, extraOptions, scalatestOptions }
|
import com.typesafe.sbt.SbtMultiJvm.MultiJvmKeys.{ MultiJvm, extraOptions }
|
||||||
import com.typesafe.sbt.SbtScalariform.ScalariformKeys
|
|
||||||
import com.typesafe.tools.mima.plugin.MimaPlugin.mimaDefaultSettings
|
import com.typesafe.tools.mima.plugin.MimaPlugin.mimaDefaultSettings
|
||||||
import com.typesafe.tools.mima.plugin.MimaKeys.previousArtifact
|
import com.typesafe.tools.mima.plugin.MimaKeys.previousArtifact
|
||||||
import com.typesafe.tools.mima.plugin.MimaKeys.reportBinaryIssues
|
import com.typesafe.tools.mima.plugin.MimaKeys.reportBinaryIssues
|
||||||
import com.typesafe.tools.mima.plugin.MimaKeys.binaryIssueFilters
|
import com.typesafe.tools.mima.plugin.MimaKeys.binaryIssueFilters
|
||||||
import com.typesafe.sbt.SbtSite.site
|
|
||||||
import java.io.{InputStreamReader, FileInputStream, File}
|
import java.io.{InputStreamReader, FileInputStream, File}
|
||||||
import java.util.Properties
|
import java.util.Properties
|
||||||
import sbtunidoc.Plugin.UnidocKeys.unidoc
|
import sbtunidoc.Plugin.UnidocKeys.unidoc
|
||||||
import TestExtras.{ JUnitFileReporting, StatsDMetrics, GraphiteBuildEvents }
|
import TestExtras.{ JUnitFileReporting, StatsDMetrics, GraphiteBuildEvents }
|
||||||
import com.typesafe.sbt.S3Plugin.{ S3, s3Settings }
|
import com.typesafe.sbt.S3Plugin.{ S3, s3Settings }
|
||||||
import Unidoc.{ scaladocSettings, scaladocSettingsNoVerificationOfDiagrams, unidocSettings, javadocSettings }
|
import Unidoc.{ scaladocSettings, unidocSettings }
|
||||||
import Formatting.{ formatSettings, docFormatSettings }
|
import Formatting.docFormatSettings
|
||||||
import MultiNode.{ multiJvmSettings, defaultMultiJvmOptions, defaultMultiJvmScalatestOptions }
|
import MultiNode.multiJvmSettings
|
||||||
import com.typesafe.sbt.site.SphinxSupport
|
import com.typesafe.sbt.site.SphinxSupport
|
||||||
import com.typesafe.sbt.site.SphinxSupport.Sphinx
|
import com.typesafe.sbt.site.SphinxSupport.Sphinx
|
||||||
|
|
||||||
|
|
@ -39,7 +37,7 @@ object AkkaBuild extends Build {
|
||||||
scalaBinaryVersion := System.getProperty("akka.scalaBinaryVersion", if (scalaVersion.value contains "-") scalaVersion.value else scalaBinaryVersion.value)
|
scalaBinaryVersion := System.getProperty("akka.scalaBinaryVersion", if (scalaVersion.value contains "-") scalaVersion.value else scalaBinaryVersion.value)
|
||||||
)
|
)
|
||||||
|
|
||||||
lazy val akka = Project(
|
lazy val root = Project(
|
||||||
id = "akka",
|
id = "akka",
|
||||||
base = file("."),
|
base = file("."),
|
||||||
settings = parentSettings ++ Release.settings ++ unidocSettings ++ Publish.versionSettings ++
|
settings = parentSettings ++ Release.settings ++ unidocSettings ++ Publish.versionSettings ++
|
||||||
|
|
@ -74,162 +72,85 @@ object AkkaBuild extends Build {
|
||||||
|
|
||||||
lazy val actor = Project(
|
lazy val actor = Project(
|
||||||
id = "akka-actor",
|
id = "akka-actor",
|
||||||
base = file("akka-actor"),
|
base = file("akka-actor")
|
||||||
settings = defaultSettings ++ formatSettings ++ scaladocSettings ++ javadocSettings ++ OSGi.actor ++ Seq(
|
|
||||||
// to fix scaladoc generation
|
|
||||||
fullClasspath in doc in Compile <<= fullClasspath in Compile,
|
|
||||||
libraryDependencies ++= Dependencies.actor,
|
|
||||||
previousArtifact := akkaPreviousArtifact("akka-actor")
|
|
||||||
)
|
|
||||||
)
|
)
|
||||||
|
|
||||||
lazy val testkit = Project(
|
lazy val testkit = Project(
|
||||||
id = "akka-testkit",
|
id = "akka-testkit",
|
||||||
base = file("akka-testkit"),
|
base = file("akka-testkit"),
|
||||||
dependencies = Seq(actor),
|
dependencies = Seq(actor)
|
||||||
settings = defaultSettings ++ formatSettings ++ scaladocSettings ++ javadocSettings ++ OSGi.testkit ++ Seq(
|
|
||||||
libraryDependencies ++= Dependencies.testkit,
|
|
||||||
initialCommands += "import akka.testkit._",
|
|
||||||
previousArtifact := akkaPreviousArtifact("akka-testkit")
|
|
||||||
)
|
|
||||||
)
|
)
|
||||||
|
|
||||||
lazy val actorTests = Project(
|
lazy val actorTests = Project(
|
||||||
id = "akka-actor-tests",
|
id = "akka-actor-tests",
|
||||||
base = file("akka-actor-tests"),
|
base = file("akka-actor-tests"),
|
||||||
dependencies = Seq(testkit % "compile;test->test"),
|
dependencies = Seq(testkit % "compile;test->test")
|
||||||
settings = defaultSettings ++ formatSettings ++ scaladocSettings ++ Seq(
|
|
||||||
publishArtifact in Compile := false,
|
|
||||||
libraryDependencies ++= Dependencies.actorTests
|
|
||||||
)
|
|
||||||
)
|
)
|
||||||
|
|
||||||
lazy val remote = Project(
|
lazy val remote = Project(
|
||||||
id = "akka-remote",
|
id = "akka-remote",
|
||||||
base = file("akka-remote"),
|
base = file("akka-remote"),
|
||||||
dependencies = Seq(actor, actorTests % "test->test", testkit % "test->test"),
|
dependencies = Seq(actor, actorTests % "test->test", testkit % "test->test")
|
||||||
settings = defaultSettings ++ formatSettings ++ scaladocSettings ++ javadocSettings ++ OSGi.remote ++ Seq(
|
|
||||||
libraryDependencies ++= Dependencies.remote,
|
|
||||||
// disable parallel tests
|
|
||||||
parallelExecution in Test := false,
|
|
||||||
previousArtifact := akkaPreviousArtifact("akka-remote")
|
|
||||||
)
|
|
||||||
)
|
)
|
||||||
|
|
||||||
lazy val multiNodeTestkit = Project(
|
lazy val multiNodeTestkit = Project(
|
||||||
id = "akka-multi-node-testkit",
|
id = "akka-multi-node-testkit",
|
||||||
base = file("akka-multi-node-testkit"),
|
base = file("akka-multi-node-testkit"),
|
||||||
dependencies = Seq(remote, testkit),
|
dependencies = Seq(remote, testkit)
|
||||||
settings = defaultSettings ++ formatSettings ++ scaladocSettings ++ javadocSettings ++ Seq(
|
|
||||||
previousArtifact := akkaPreviousArtifact("akka-multi-node-testkit")
|
|
||||||
)
|
|
||||||
)
|
)
|
||||||
|
|
||||||
lazy val remoteTests = Project(
|
lazy val remoteTests = Project(
|
||||||
id = "akka-remote-tests",
|
id = "akka-remote-tests",
|
||||||
base = file("akka-remote-tests"),
|
base = file("akka-remote-tests"),
|
||||||
dependencies = Seq(actorTests % "test->test", multiNodeTestkit),
|
dependencies = Seq(actorTests % "test->test", multiNodeTestkit)
|
||||||
settings = defaultSettings ++ formatSettings ++ scaladocSettings ++ multiJvmSettings ++ Seq(
|
|
||||||
libraryDependencies ++= Dependencies.remoteTests,
|
|
||||||
// disable parallel tests
|
|
||||||
parallelExecution in Test := false,
|
|
||||||
extraOptions in MultiJvm <<= (sourceDirectory in MultiJvm) { src =>
|
|
||||||
(name: String) => (src ** (name + ".conf")).get.headOption.map("-Dakka.config=" + _.absolutePath).toSeq
|
|
||||||
},
|
|
||||||
scalatestOptions in MultiJvm := defaultMultiJvmScalatestOptions.value,
|
|
||||||
publishArtifact in Compile := false,
|
|
||||||
reportBinaryIssues := () // disable bin comp check
|
|
||||||
)
|
|
||||||
) configs (MultiJvm)
|
) configs (MultiJvm)
|
||||||
|
|
||||||
lazy val cluster = Project(
|
lazy val cluster = Project(
|
||||||
id = "akka-cluster",
|
id = "akka-cluster",
|
||||||
base = file("akka-cluster"),
|
base = file("akka-cluster"),
|
||||||
dependencies = Seq(remote, remoteTests % "test->test" , testkit % "test->test"),
|
dependencies = Seq(remote, remoteTests % "test->test" , testkit % "test->test")
|
||||||
settings = defaultSettings ++ formatSettings ++ scaladocSettings ++ javadocSettings ++ multiJvmSettings ++ OSGi.cluster ++ Seq(
|
|
||||||
libraryDependencies ++= Dependencies.cluster,
|
|
||||||
// disable parallel tests
|
|
||||||
parallelExecution in Test := false,
|
|
||||||
extraOptions in MultiJvm <<= (sourceDirectory in MultiJvm) { src =>
|
|
||||||
(name: String) => (src ** (name + ".conf")).get.headOption.map("-Dakka.config=" + _.absolutePath).toSeq
|
|
||||||
},
|
|
||||||
scalatestOptions in MultiJvm := defaultMultiJvmScalatestOptions.value,
|
|
||||||
previousArtifact := akkaPreviousArtifact("akka-cluster")
|
|
||||||
)
|
|
||||||
) configs (MultiJvm)
|
) configs (MultiJvm)
|
||||||
|
|
||||||
lazy val slf4j = Project(
|
lazy val slf4j = Project(
|
||||||
id = "akka-slf4j",
|
id = "akka-slf4j",
|
||||||
base = file("akka-slf4j"),
|
base = file("akka-slf4j"),
|
||||||
dependencies = Seq(actor, testkit % "test->test"),
|
dependencies = Seq(actor, testkit % "test->test")
|
||||||
settings = defaultSettings ++ formatSettings ++ scaladocSettings ++ javadocSettings ++ OSGi.slf4j ++ Seq(
|
|
||||||
libraryDependencies ++= Dependencies.slf4j,
|
|
||||||
previousArtifact := akkaPreviousArtifact("akka-slf4j")
|
|
||||||
)
|
|
||||||
)
|
)
|
||||||
|
|
||||||
lazy val agent = Project(
|
lazy val agent = Project(
|
||||||
id = "akka-agent",
|
id = "akka-agent",
|
||||||
base = file("akka-agent"),
|
base = file("akka-agent"),
|
||||||
dependencies = Seq(actor, testkit % "test->test"),
|
dependencies = Seq(actor, testkit % "test->test")
|
||||||
settings = defaultSettings ++ formatSettings ++ scaladocSettingsNoVerificationOfDiagrams ++ javadocSettings ++ OSGi.agent ++ Seq(
|
|
||||||
libraryDependencies ++= Dependencies.agent,
|
|
||||||
previousArtifact := akkaPreviousArtifact("akka-agent")
|
|
||||||
)
|
|
||||||
)
|
)
|
||||||
|
|
||||||
lazy val persistence = Project(
|
lazy val persistence = Project(
|
||||||
id = "akka-persistence-experimental",
|
id = "akka-persistence-experimental",
|
||||||
base = file("akka-persistence"),
|
base = file("akka-persistence"),
|
||||||
dependencies = Seq(actor, remote % "test->test", testkit % "test->test"),
|
dependencies = Seq(actor, remote % "test->test", testkit % "test->test")
|
||||||
settings = defaultSettings ++ formatSettings ++ scaladocSettings ++ experimentalSettings ++ javadocSettings ++ OSGi.persistence ++ Seq(
|
|
||||||
fork in Test := true,
|
|
||||||
javaOptions in Test := defaultMultiJvmOptions,
|
|
||||||
libraryDependencies ++= Dependencies.persistence,
|
|
||||||
previousArtifact := akkaPreviousArtifact("akka-persistence-experimental")
|
|
||||||
)
|
|
||||||
)
|
)
|
||||||
|
|
||||||
lazy val zeroMQ = Project(
|
lazy val zeroMQ = Project(
|
||||||
id = "akka-zeromq",
|
id = "akka-zeromq",
|
||||||
base = file("akka-zeromq"),
|
base = file("akka-zeromq"),
|
||||||
dependencies = Seq(actor, testkit % "test;test->test"),
|
dependencies = Seq(actor, testkit % "test;test->test")
|
||||||
settings = defaultSettings ++ formatSettings ++ scaladocSettings ++ javadocSettings ++ OSGi.zeroMQ ++ Seq(
|
|
||||||
libraryDependencies ++= Dependencies.zeroMQ,
|
|
||||||
previousArtifact := akkaPreviousArtifact("akka-zeromq")
|
|
||||||
)
|
|
||||||
)
|
)
|
||||||
|
|
||||||
lazy val kernel = Project(
|
lazy val kernel = Project(
|
||||||
id = "akka-kernel",
|
id = "akka-kernel",
|
||||||
base = file("akka-kernel"),
|
base = file("akka-kernel"),
|
||||||
dependencies = Seq(actor, testkit % "test->test"),
|
dependencies = Seq(actor, testkit % "test->test")
|
||||||
settings = defaultSettings ++ formatSettings ++ scaladocSettingsNoVerificationOfDiagrams ++ javadocSettings ++ Seq(
|
|
||||||
libraryDependencies ++= Dependencies.kernel,
|
|
||||||
previousArtifact := akkaPreviousArtifact("akka-kernel")
|
|
||||||
)
|
|
||||||
)
|
)
|
||||||
|
|
||||||
lazy val camel = Project(
|
lazy val camel = Project(
|
||||||
id = "akka-camel",
|
id = "akka-camel",
|
||||||
base = file("akka-camel"),
|
base = file("akka-camel"),
|
||||||
dependencies = Seq(actor, slf4j, testkit % "test->test"),
|
dependencies = Seq(actor, slf4j, testkit % "test->test")
|
||||||
settings = defaultSettings ++ formatSettings ++ scaladocSettings ++ javadocSettings ++ OSGi.camel ++ Seq(
|
|
||||||
libraryDependencies ++= Dependencies.camel,
|
|
||||||
testOptions += Tests.Argument(TestFrameworks.JUnit, "-v", "-a"),
|
|
||||||
previousArtifact := akkaPreviousArtifact("akka-camel")
|
|
||||||
)
|
|
||||||
)
|
)
|
||||||
|
|
||||||
lazy val osgi = Project(
|
lazy val osgi = Project(
|
||||||
id = "akka-osgi",
|
id = "akka-osgi",
|
||||||
base = file("akka-osgi"),
|
base = file("akka-osgi"),
|
||||||
dependencies = Seq(actor),
|
dependencies = Seq(actor)
|
||||||
settings = defaultSettings ++ formatSettings ++ scaladocSettings ++ javadocSettings ++ OSGi.osgi ++ Seq(
|
|
||||||
libraryDependencies ++= Dependencies.osgi,
|
|
||||||
parallelExecution in Test := false,
|
|
||||||
reportBinaryIssues := () // disable bin comp check
|
|
||||||
)
|
|
||||||
)
|
)
|
||||||
|
|
||||||
lazy val samples = Project(
|
lazy val samples = Project(
|
||||||
|
|
@ -312,6 +233,20 @@ object AkkaBuild extends Build {
|
||||||
settings = sampleSettings
|
settings = sampleSettings
|
||||||
)
|
)
|
||||||
|
|
||||||
|
lazy val docs = Project(
|
||||||
|
id = "akka-docs",
|
||||||
|
base = file("akka-docs"),
|
||||||
|
dependencies = Seq(actor, testkit % "test->test",
|
||||||
|
remote % "compile;test->test", cluster, slf4j, agent, zeroMQ, camel, osgi,
|
||||||
|
persistence % "compile;test->test")
|
||||||
|
)
|
||||||
|
|
||||||
|
lazy val contrib = Project(
|
||||||
|
id = "akka-contrib",
|
||||||
|
base = file("akka-contrib"),
|
||||||
|
dependencies = Seq(remote, remoteTests % "test->test", cluster, persistence)
|
||||||
|
) configs (MultiJvm)
|
||||||
|
|
||||||
lazy val clusterSampleJava = Project(
|
lazy val clusterSampleJava = Project(
|
||||||
id = "akka-sample-cluster-java",
|
id = "akka-sample-cluster-java",
|
||||||
base = file("akka-samples/akka-sample-cluster-java"),
|
base = file("akka-samples/akka-sample-cluster-java"),
|
||||||
|
|
@ -428,43 +363,6 @@ object AkkaBuild extends Build {
|
||||||
|
|
||||||
lazy val osgiSampleSettings: Seq[Setting[_]] = Seq(target := baseDirectory.value / "target-sbt")
|
lazy val osgiSampleSettings: Seq[Setting[_]] = Seq(target := baseDirectory.value / "target-sbt")
|
||||||
|
|
||||||
lazy val docs = Project(
|
|
||||||
id = "akka-docs",
|
|
||||||
base = file("akka-docs"),
|
|
||||||
dependencies = Seq(actor, testkit % "test->test",
|
|
||||||
remote % "compile;test->test", cluster, slf4j, agent, zeroMQ, camel, osgi,
|
|
||||||
persistence % "compile;test->test"),
|
|
||||||
settings = defaultSettings ++ docFormatSettings ++ site.settings ++ site.sphinxSupport() ++ site.publishSite ++
|
|
||||||
SphinxDoc.docsSettings ++ SphinxDoc.sphinxPreprocessing ++ Seq(
|
|
||||||
libraryDependencies ++= Dependencies.docs,
|
|
||||||
publishArtifact in Compile := false,
|
|
||||||
unmanagedSourceDirectories in ScalariformKeys.format in Test <<= unmanagedSourceDirectories in Test,
|
|
||||||
testOptions += Tests.Argument(TestFrameworks.JUnit, "-v", "-a"),
|
|
||||||
reportBinaryIssues := () // disable bin comp check
|
|
||||||
)
|
|
||||||
)
|
|
||||||
|
|
||||||
lazy val contrib = Project(
|
|
||||||
id = "akka-contrib",
|
|
||||||
base = file("akka-contrib"),
|
|
||||||
dependencies = Seq(remote, remoteTests % "test->test", cluster, persistence),
|
|
||||||
settings = defaultSettings ++ formatSettings ++ scaladocSettings ++ javadocSettings ++ multiJvmSettings ++ Seq(
|
|
||||||
libraryDependencies ++= Dependencies.contrib,
|
|
||||||
testOptions += Tests.Argument(TestFrameworks.JUnit, "-v"),
|
|
||||||
reportBinaryIssues := (), // disable bin comp check
|
|
||||||
description := """|
|
|
||||||
|This subproject provides a home to modules contributed by external
|
|
||||||
|developers which may or may not move into the officially supported code
|
|
||||||
|base over time. A module in this subproject doesn't have to obey the rule
|
|
||||||
|of staying binary compatible between minor releases. Breaking API changes
|
|
||||||
|may be introduced in minor releases without notice as we refine and
|
|
||||||
|simplify based on your feedback. A module may be dropped in any release
|
|
||||||
|without prior deprecation. The Typesafe subscription does not cover
|
|
||||||
|support for these modules.
|
|
||||||
|""".stripMargin
|
|
||||||
)
|
|
||||||
) configs (MultiJvm)
|
|
||||||
|
|
||||||
// Settings
|
// Settings
|
||||||
|
|
||||||
override lazy val settings =
|
override lazy val settings =
|
||||||
|
|
@ -572,6 +470,10 @@ object AkkaBuild extends Build {
|
||||||
// don't save test output to a file
|
// don't save test output to a file
|
||||||
testListeners in (Test, test) := Seq(TestLogger(streams.value.log, {_ => streams.value.log }, logBuffered.value)),
|
testListeners in (Test, test) := Seq(TestLogger(streams.value.log, {_ => streams.value.log }, logBuffered.value)),
|
||||||
|
|
||||||
|
// -v Log "test run started" / "test started" / "test run finished" events on log level "info" instead of "debug".
|
||||||
|
// -a Show stack traces and exception class name for AssertionErrors.
|
||||||
|
testOptions += Tests.Argument(TestFrameworks.JUnit, "-v", "-a"),
|
||||||
|
|
||||||
validatePullRequestTask,
|
validatePullRequestTask,
|
||||||
// add reportBinaryIssues to validatePullRequest on minor version maintenance branch
|
// add reportBinaryIssues to validatePullRequest on minor version maintenance branch
|
||||||
validatePullRequest <<= validatePullRequest.dependsOn(reportBinaryIssues)
|
validatePullRequest <<= validatePullRequest.dependsOn(reportBinaryIssues)
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue