From c09ab5c8b0bb48e0ea8591a5750e35d37319f356 Mon Sep 17 00:00:00 2001 From: Enno Runne <458526+ennru@users.noreply.github.com> Date: Wed, 8 Nov 2023 08:34:59 +0100 Subject: [PATCH] chore: enable dependency plugin to support analysis (#479) --- project/plugins.sbt | 3 +++ 1 file changed, 3 insertions(+) diff --git a/project/plugins.sbt b/project/plugins.sbt index b1e7e930..bdf9bfed 100644 --- a/project/plugins.sbt +++ b/project/plugins.sbt @@ -2,6 +2,9 @@ addSbtPlugin("de.heikoseeberger" % "sbt-header" % "5.10.0") // for maintenance o addSbtPlugin("org.scalameta" % "sbt-scalafmt" % "2.4.2") addSbtPlugin("com.lightbend.sbt" % "sbt-java-formatter" % "0.8.0") +// for dependency analysis +addDependencyTreePlugin + // for releasing addSbtPlugin("com.github.sbt" % "sbt-ci-release" % "1.5.12")