Disable aggregation for global input tasks

This commit is contained in:
Eugene Yokota 2020-02-24 01:18:43 -05:00 committed by Adrien Piquerez
parent d2d0a9ca80
commit f6ff4da1c5
1 changed files with 2 additions and 0 deletions

View File

@ -43,6 +43,7 @@ object BuildServerProtocol {
s.respondEvent(result) s.respondEvent(result)
} }
}).evaluated, }).evaluated,
bspBuildTargetSources / aggregate := false,
bspBuildTargetScalacOptions := (Def.inputTaskDyn { bspBuildTargetScalacOptions := (Def.inputTaskDyn {
import DefaultParsers._ import DefaultParsers._
val s = state.value val s = state.value
@ -56,6 +57,7 @@ object BuildServerProtocol {
s.respondEvent(result) s.respondEvent(result)
} }
}).evaluated, }).evaluated,
bspBuildTargetScalacOptions / aggregate := false,
) )
// This will be coped to Compile, Test, etc // This will be coped to Compile, Test, etc