Fixes #1514. Enable latest SNAPSHOT option by default

to check all resolvers to find the latest snapshot artifacts.
This behavior did not work well with Maven repositories where sbt was
failing to calculate the correct publication dates.
Now that #2075 fixes the Maven integration issue we should enable this
flag back again.

The build user can opt out by:

    updateOptions := updateOptions.value.withLatestSnapshots(false)
This commit is contained in:
Eugene Yokota 2015-12-14 16:59:55 -05:00 committed by Dale Wijnand
parent 54fa9dd416
commit 409d1a7f4e
1 changed files with 1 additions and 1 deletions

View File

@ -93,7 +93,7 @@ object UpdateOptions {
new UpdateOptions(
circularDependencyLevel = CircularDependencyLevel.Warn,
interProjectFirst = true,
latestSnapshots = false,
latestSnapshots = true,
consolidatedResolution = false,
cachedResolution = false,
resolverConverter = PartialFunction.empty