From 177ac666da323e8af07a35159f35c308e873b585 Mon Sep 17 00:00:00 2001 From: Dale Wijnand Date: Thu, 29 Jun 2017 11:01:23 +0100 Subject: [PATCH] Use less of Project.apply In sbt 1 Project.apply will only take 2 parameters. --- build.sbt | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/build.sbt b/build.sbt index 524dc0ada8..b42b60d047 100644 --- a/build.sbt +++ b/build.sbt @@ -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) \ No newline at end of file + .settings(akka.AkkaBuild.buildSettings)