Use less of Project.apply
In sbt 1 Project.apply will only take 2 parameters.
This commit is contained in:
parent
5fb44e2c18
commit
177ac666da
1 changed files with 4 additions and 4 deletions
|
|
@ -36,9 +36,9 @@ lazy val aggregatedProjects: Seq[ProjectReference] = Seq(
|
|||
|
||||
lazy val root = Project(
|
||||
id = "akka",
|
||||
base = file("."),
|
||||
aggregate = aggregatedProjects
|
||||
).settings(rootSettings: _*)
|
||||
base = file(".")
|
||||
).aggregate(aggregatedProjects: _*)
|
||||
.settings(rootSettings: _*)
|
||||
.settings(unidocRootIgnoreProjects := Seq(remoteTests, benchJmh, protobuf, akkaScalaNightly, docs))
|
||||
|
||||
lazy val actor = akkaModule("akka-actor")
|
||||
|
|
@ -173,4 +173,4 @@ lazy val testkit = akkaModule("akka-testkit")
|
|||
|
||||
def akkaModule(name: String): Project =
|
||||
Project(id = name, base = file(name))
|
||||
.settings(akka.AkkaBuild.buildSettings)
|
||||
.settings(akka.AkkaBuild.buildSettings)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue