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(
|
lazy val root = Project(
|
||||||
id = "akka",
|
id = "akka",
|
||||||
base = file("."),
|
base = file(".")
|
||||||
aggregate = aggregatedProjects
|
).aggregate(aggregatedProjects: _*)
|
||||||
).settings(rootSettings: _*)
|
.settings(rootSettings: _*)
|
||||||
.settings(unidocRootIgnoreProjects := Seq(remoteTests, benchJmh, protobuf, akkaScalaNightly, docs))
|
.settings(unidocRootIgnoreProjects := Seq(remoteTests, benchJmh, protobuf, akkaScalaNightly, docs))
|
||||||
|
|
||||||
lazy val actor = akkaModule("akka-actor")
|
lazy val actor = akkaModule("akka-actor")
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue