From c117be2091e7f9f98112b5486e77ad15ae61c6dd Mon Sep 17 00:00:00 2001 From: Johannes Rudolph Date: Sat, 15 Sep 2018 15:04:12 +0200 Subject: [PATCH] Rename our own update task to something else so we don't conflict with other task scopes --- .../scala/net/virtualvoid/sbt/graph/DependencyGraphKeys.scala | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/scala/net/virtualvoid/sbt/graph/DependencyGraphKeys.scala b/src/main/scala/net/virtualvoid/sbt/graph/DependencyGraphKeys.scala index 3bb4eab43..2abdd156d 100644 --- a/src/main/scala/net/virtualvoid/sbt/graph/DependencyGraphKeys.scala +++ b/src/main/scala/net/virtualvoid/sbt/graph/DependencyGraphKeys.scala @@ -95,7 +95,6 @@ trait DependencyGraphKeys { val ivyReport = TaskKey[File]( "ivy-report", "A task which returns the location of the ivy report file for a given configuration (default `compile`).") - val ignoreMissingUpdate = Keys.update in ivyReport val filterScalaLibrary = SettingKey[Boolean]( "filter-scala-library", "Specifies if scala dependency should be filtered in dependency-* output") @@ -105,6 +104,7 @@ trait DependencyGraphKeys { "Aggregates and shows information about the licenses of dependencies") // internal + private[graph] val ignoreMissingUpdate = TaskKey[UpdateReport]("dependencyUpdate", "sbt-dependency-graph version of update") private[graph] val moduleGraphStore = TaskKey[ModuleGraph]("module-graph-store", "The stored module-graph from the last run") val whatDependsOn = InputKey[String]("what-depends-on", "Shows information about what depends on the given module") private[graph] val crossProjectId = SettingKey[ModuleID]("dependency-graph-cross-project-id")