enable sbt cached resolution

pull/576/head
Thibault Duplessis 2015-06-10 12:17:35 +02:00
parent 01ac12c421
commit f3cf22472e
2 changed files with 2 additions and 2 deletions

View File

@ -20,7 +20,7 @@ object ApplicationBuild extends Build {
spray.caching, maxmind, prismic),
scalacOptions := compilerOptions,
incOptions := incOptions.value.withNameHashing(true),
// updateOptions := updateOptions.value.withCachedResolution(true),
updateOptions := updateOptions.value.withCachedResolution(true),
sources in doc in Compile := List(),
TwirlKeys.templateImports ++= Seq(
"lila.game.{ Game, Player, Pov }",

View File

@ -14,7 +14,7 @@ object BuildSettings {
parallelExecution in Test := false,
scalacOptions := compilerOptions,
incOptions := incOptions.value.withNameHashing(true),
// updateOptions := updateOptions.value.withCachedResolution(true),
updateOptions := updateOptions.value.withCachedResolution(true),
sources in doc in Compile := List())
def defaultDeps = Seq(scalaz, scalalib, jodaTime, spray.util, ws)