Add flag sbt.gigahorse.enabled, to optionally disable Gigahorse. Default is true.

This commit is contained in:
Antonio Cunei 2017-09-14 16:07:02 +02:00
parent 04193716da
commit b480c9c65b
1 changed files with 1 additions and 1 deletions

View File

@ -109,7 +109,7 @@ object UpdateOptions {
interProjectFirst = true,
latestSnapshots = true,
cachedResolution = false,
gigahorse = true,
gigahorse = sys.props.get("sbt.gigahorse.enabled") map { _.toLowerCase == "true" } getOrElse true,
resolverConverter = PartialFunction.empty,
moduleResolvers = Map.empty
)