Merge pull request #166 from jrudolph/rename-our-own-update-task

Rename our own update task to something else so we don't conflict with other task scopes
This commit is contained in:
Johannes Rudolph 2018-09-15 16:04:51 +02:00 committed by GitHub
commit de4d508f4e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -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")