From e2ddb5c66a2519a89241502ee69a7b6d93886cb9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Teo=20Klestrup=20R=C3=B6ijezon?= Date: Sat, 7 Jul 2018 01:28:06 +0200 Subject: [PATCH] Made coursierLoggerFactory a Task rather than a Setting --- sbt-coursier/src/main/scala/coursier/Keys.scala | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sbt-coursier/src/main/scala/coursier/Keys.scala b/sbt-coursier/src/main/scala/coursier/Keys.scala index 6c9213590..79497d76c 100644 --- a/sbt-coursier/src/main/scala/coursier/Keys.scala +++ b/sbt-coursier/src/main/scala/coursier/Keys.scala @@ -17,7 +17,7 @@ object Keys { val coursierCachePolicies = SettingKey[Seq[CachePolicy]]("coursier-cache-policies") val coursierTtl = SettingKey[Option[Duration]]("coursier-ttl") val coursierKeepPreloaded = SettingKey[Boolean]("coursier-keep-preloaded", "Whether to take into account sbt preloaded repositories or not") - val coursierLoggerFactory = SettingKey[() => Cache.Logger]("coursier-logger-factory") + val coursierLoggerFactory = TaskKey[() => Cache.Logger]("coursier-logger-factory") val coursierVerbosity = SettingKey[Int]("coursier-verbosity")