← All recipes
Open source

Does not include dependency for Gradle and Maven

Recipe IDorg.openrewrite.java.dependencies.search.DoesNotIncludeDependency
Artifactorg.openrewrite.recipe:rewrite-java-dependencies

A precondition which returns false if visiting a Gradle file / Maven pom which includes the specified dependency in the classpath of some Gradle configuration / Maven scope. For compatibility with multimodule projects, this should most often be applied as a precondition.

Single recipeApache 2.0

Usage

You’ll need the Moderne CLI configured before running the command below.

mod run . --recipe org.openrewrite.java.dependencies.search.DoesNotIncludeDependency --recipe-option "groupId=com.google.guava" --recipe-option "artifactId=guava"

If the recipe isn’t available locally, install it with:

mod config recipes jar install org.openrewrite.recipe:rewrite-java-dependencies:1.60.0

Options

NameTypeDescription
groupIdrequiredStringThe first part of a dependency coordinate com.google.guava:guava:VERSION. Supports glob.
e.g. com.google.guava
artifactIdrequiredStringThe second part of a dependency coordinate com.google.guava:guava:VERSION. Supports glob.
e.g. guava
versionStringMatch only dependencies with the specified resolved version. Node-style version selectors may be used. All versions are searched by default.
e.g. 1.x
onlyDirectBooleanDefault false. If enabled, transitive dependencies will not be considered.
e.g. true
scopeStringDefault any. If specified, only the requested scope's classpaths will be checked.
e.g. compile
configurationStringMatch dependencies with the specified configuration. If not specified, all configurations will be searched.
e.g. compileClasspath

Data tables

Structured output this recipe can produce.

  • Source files that had resultsSource files that were modified by the recipe run.org.openrewrite.table.SourcesFileResults
  • Source files that had search resultsSearch results that were found during the recipe run.org.openrewrite.table.SearchResults
  • Source files that errored on a recipeThe details of all errors produced by a recipe run.org.openrewrite.table.SourcesFileErrors
  • Recipe performanceStatistics used in analyzing the performance of recipes.org.openrewrite.table.RecipeRunStats