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)
|
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
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue