mirror of https://github.com/sbt/sbt.git
Disable aggregation for global input tasks
This commit is contained in:
parent
d2d0a9ca80
commit
f6ff4da1c5
|
|
@ -43,6 +43,7 @@ object BuildServerProtocol {
|
|||
s.respondEvent(result)
|
||||
}
|
||||
}).evaluated,
|
||||
bspBuildTargetSources / aggregate := false,
|
||||
bspBuildTargetScalacOptions := (Def.inputTaskDyn {
|
||||
import DefaultParsers._
|
||||
val s = state.value
|
||||
|
|
@ -56,6 +57,7 @@ object BuildServerProtocol {
|
|||
s.respondEvent(result)
|
||||
}
|
||||
}).evaluated,
|
||||
bspBuildTargetScalacOptions / aggregate := false,
|
||||
)
|
||||
|
||||
// This will be coped to Compile, Test, etc
|
||||
|
|
|
|||
Loading…
Reference in New Issue