Use less of Project.apply

In sbt 1 Project.apply will only take 2 parameters.
This commit is contained in:
Dale Wijnand 2017-06-29 11:01:23 +01:00
parent 5fb44e2c18
commit 177ac666da
No known key found for this signature in database
GPG key ID: 4F256E3D151DF5EF

View file

@ -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")