From 472dac469f16e00c63a365706061da16b14d8164 Mon Sep 17 00:00:00 2001 From: Scala Steward <43047562+scala-steward@users.noreply.github.com> Date: Mon, 18 Nov 2019 10:28:20 +0100 Subject: [PATCH] Remove classgraph dependency from sbt plugin scope (#28118) As we don't use it directly and it comes in transitively from sbt-paradox-unidoc where it is used. --- project/plugins.sbt | 3 --- 1 file changed, 3 deletions(-) diff --git a/project/plugins.sbt b/project/plugins.sbt index 437b2b65d4..5ebbd69765 100644 --- a/project/plugins.sbt +++ b/project/plugins.sbt @@ -25,6 +25,3 @@ addSbtPlugin("de.heikoseeberger" % "sbt-header" % "5.3.0") // for maintenance of addSbtPlugin("com.hpe.sbt" % "sbt-pull-request-validator" % "1.0.0") addSbtPlugin("org.scoverage" % "sbt-scoverage" % "1.6.0") addSbtPlugin("net.bzzt" % "sbt-reproducible-builds" % "0.22") - -// used for @unidoc directive -libraryDependencies += "io.github.classgraph" % "classgraph" % "4.8.47"