mirror of https://github.com/sbt/sbt.git
522 B
522 B
Fixes with compatibility implications
-
.valuemethod is deprecated for input tasks. Calling.valuemethod on an input task returnsInputTask[A], which is completely unintuitive and often results to a bug. In most cases.evaluatedshould be called, which returnsAby evaluating the task. Just in caseInputTask[A]is needed,inputTaskValuemethod is now provided. #2709 by @eed3si9n