An sbt plugin to check that your libraryDependencies
accurately reflects the
libraries that your code depends on in order to compile.
For example, say your project declares only a single dependency:
libraryDependencies += "org.typelevel" %% "cats-effect" % "1.0.0"
This brings in a few other libraries as transitive dependencies, including
cats-core
.
If your code directly depends on classes from cats-core
, e.g.:
val nel = cats.data.NonEmptyList.of(1, 2, 3)
then this plugin will warn you about that fact.
If you want to avoid dependency hell, it's good practice to explicitly declare all libraries that your code directly depends on for compilation.
Add the plugin in project/plugins.sbt
or as a global plugin in
~/.sbt/1.0/plugins/plugins.sbt
:
addSbtPlugin("com.github.cb372" % "sbt-explicit-dependencies" % "latest version (see badge above)")
The undeclaredCompileDependencies
task shows a list of dependencies that
should be declared explicitly:
sbt:example> undeclaredCompileDependencies
[warn] example >>> The project depends on the following libraries for compilation but they are not declared in libraryDependencies:
[warn] - "com.chuusai" %% "shapeless" % "2.3.3"
[warn] - "com.google.guava" % "guava" % "26.0-jre"
[warn] - "org.typelevel" %% "cats-core" % "1.2.0"
[warn] - "org.typelevel" %% "cats-effect" % "0.10.1"
[success] Total time: 0 s, completed 01-Oct-2018 00:16:31
There is also a task undeclaredCompileDependenciesTest
which will fail the
build if there are any undeclared dependencies. This can be useful as part of a
CI pipeline:
sbt:example> undeclaredCompileDependenciesTest
[warn] example >>> The project depends on the following libraries for compilation but they are not declared in libraryDependencies:
[warn] - "com.chuusai" %% "shapeless" % "2.3.3"
[warn] - "com.google.guava" % "guava" % "26.0-jre"
[warn] - "org.typelevel" %% "cats-core" % "1.2.0"
[warn] - "org.typelevel" %% "cats-effect" % "0.10.1"
[error] (undeclaredCompileDependenciesTest) Failing the build because undeclared dependencies were found
[error] Total time: 1 s, completed 01-Oct-2018 00:17:05
The unusedCompileDependencies
task shows a list of libraries that have been
declared as dependencies but are not actually needed for compilation:
sbt:example> unusedCompileDependencies
[warn] example >>> The following libraries are declared in libraryDependencies but are not needed for compilation:
[warn] - "com.github.cb372" %% "scalacache-guava" % "0.24.3"
[warn] - "org.http4s" %% "http4s-circe" % "0.18.16"
[warn] - "org.postgresql" % "postgresql" % "42.2.5"
[warn] - "org.tpolecat" %% "doobie-postgres" % "0.5.3"
[success] Total time: 0 s, completed 01-Oct-2018 00:17:34
This is also a task unusedCompileDependenciesTest
which will fail the build if
this list is non-empty. This can be useful as part of a CI pipeline:
sbt:example> unusedCompileDependenciesTest
[warn] example >>> The following libraries are declared in libraryDependencies but are not needed for compilation:
[warn] - "com.github.cb372" %% "scalacache-guava" % "0.24.3"
[warn] - "org.http4s" %% "http4s-circe" % "0.18.16"
[warn] - "org.postgresql" % "postgresql" % "42.2.5"
[warn] - "org.tpolecat" %% "doobie-postgres" % "0.5.3"
[error] (unusedCompileDependenciesTest) Failing the build because unused dependencies were found
[error] Total time: 0 s, completed 01-Oct-2018 00:18:00
If the result of either undeclaredCompileDependencies
or
unusedCompileDependencies
contains any dependencies you don't care about, you
can exclude them using the undeclaredCompileDependenciesFilter
and
unusedCompileDependenciesFilter
settings.
For example:
unusedCompileDependenciesFilter -= moduleFilter("org.scalaz", "scalaz")
Note: If you're filtering things out because you think the plugin is returning false-positive results, please open a GitHub issue.
There is an example sbt project in the example
folder so you can see the
plugin in action.