From ad99f14b4277616b681c91778eba4d9184f8eecf Mon Sep 17 00:00:00 2001 From: HyukjinKwon Date: Sun, 18 Oct 2020 09:24:44 -0700 Subject: [PATCH] [SPARK-33109][BUILD][FOLLOW-UP] Remove the obsolete comment about bringing sbt-dependency-graph back ### What changes were proposed in this pull request? This PR proposes to remove an obsolete comment about adding the `sbt-dependency-graph` back in SBT plugins. ### Why are the changes needed? sbt-dependency-graph is now built-in from SBT 1.4.0, see https://github.com/sbt/sbt/releases/tag/v1.4.0. ### Does this PR introduce _any_ user-facing change? No. ### How was this patch tested? Manually tested `./build/sbt dependencyTree`. Closes #30085 from HyukjinKwon/SPARK-33109. Authored-by: HyukjinKwon Signed-off-by: Dongjoon Hyun --- project/plugins.sbt | 2 -- 1 file changed, 2 deletions(-) diff --git a/project/plugins.sbt b/project/plugins.sbt index 920aa677f9..c33a96772d 100644 --- a/project/plugins.sbt +++ b/project/plugins.sbt @@ -45,5 +45,3 @@ libraryDependencies += "org.ow2.asm" % "asm-commons" % "7.2" addSbtPlugin("com.simplytyped" % "sbt-antlr4" % "0.8.2") addSbtPlugin("com.typesafe.sbt" % "sbt-pom-reader" % "2.2.0") - -// TODO(SPARK-33109) Upgrade to SBT 1.4 and support `dependencyTree` back