org.openrewrite.maven.AddDependency Maven / Gradle / Ivy
Show all versions of rewrite-maven Show documentation
/*
* Copyright 2020 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.openrewrite.maven;
import lombok.EqualsAndHashCode;
import lombok.Value;
import lombok.With;
import org.jspecify.annotations.Nullable;
import org.openrewrite.*;
import org.openrewrite.java.marker.JavaProject;
import org.openrewrite.java.marker.JavaSourceSet;
import org.openrewrite.java.search.UsesType;
import org.openrewrite.java.tree.JavaSourceFile;
import org.openrewrite.maven.table.MavenMetadataFailures;
import org.openrewrite.maven.tree.*;
import org.openrewrite.semver.Semver;
import org.openrewrite.xml.tree.Xml;
import java.util.*;
import java.util.regex.Pattern;
import static java.util.Objects.requireNonNull;
/**
* This recipe will detect the presence of Java types (in Java ASTs) to determine if a dependency should be added
* to a maven build file. Java Provenance information is used to filter the type search to only those java ASTs that
* have the same coordinates of that of the pom. Additionally, if a "scope" is specified in this recipe, the dependency
* will only be added if there are types found in a given source set are transitively within that scope.
*
* NOTE: IF PROVENANCE INFORMATION IS NOT PRESENT, THIS RECIPE WILL DO NOTHING.
*/
@Value
@EqualsAndHashCode(callSuper = false)
public class AddDependency extends ScanningRecipe {
@EqualsAndHashCode.Exclude
transient MavenMetadataFailures metadataFailures = new MavenMetadataFailures(this);
@Option(displayName = "Group",
description = "The first part of a dependency coordinate `com.google.guava:guava:VERSION`.",
example = "com.google.guava")
String groupId;
@Option(displayName = "Artifact",
description = "The second part of a dependency coordinate `com.google.guava:guava:VERSION`.",
example = "guava")
String artifactId;
@Option(displayName = "Version",
description = "An exact version number or node-style semver selector used to select the version number.",
example = "29.X")
String version;
@Option(displayName = "Version pattern",
description = "Allows version selection to be extended beyond the original Node Semver semantics. So for example," +
"Setting 'version' to \"25-29\" can be paired with a metadata pattern of \"-jre\" to select Guava 29.0-jre",
example = "-jre",
required = false)
@Nullable
String versionPattern;
@Option(displayName = "Scope",
description = "A scope to use when it is not what can be inferred from usage. Most of the time this will be left empty, but " +
"is used when adding a runtime, provided, or import dependency.",
example = "runtime",
valid = {"import", "runtime", "provided"},
required = false)
@Nullable
String scope;
@Option(displayName = "Releases only",
description = "Whether to exclude snapshots from consideration when using a semver selector",
required = false)
@Nullable
Boolean releasesOnly;
@Option(displayName = "Only if using",
description = "Used to determine if the dependency will be added and in which scope it should be placed.",
example = "org.junit.jupiter.api.*",
required = false)
@Nullable
String onlyIfUsing;
@Option(displayName = "Type",
description = "The type of dependency to add. If omitted Maven defaults to assuming the type is \"jar\".",
valid = {"jar", "pom", "war"},
example = "jar",
required = false)
@Nullable
String type;
@Option(displayName = "Classifier",
description = "A Maven classifier to add. Most commonly used to select shaded or test variants of a library",
example = "test",
required = false)
@Nullable
String classifier;
@Option(displayName = "Optional",
description = "Set the value of the `` tag. No `` tag will be added when this is `null`.",
required = false)
@Nullable
Boolean optional;
/**
* A glob expression used to identify other dependencies in the same family as the dependency to be added.
*/
@Option(displayName = "Family pattern",
description = "A pattern, applied to groupIds, used to determine which other dependencies should have aligned version numbers. " +
"Accepts '*' as a wildcard character.",
example = "com.fasterxml.jackson*",
required = false)
@Nullable
@With
String familyPattern;
@Option(displayName = "Accept transitive",
description = "Default false. If enabled, the dependency will not be added if it is already on the classpath as a transitive dependency.",
example = "true",
required = false)
@Nullable
Boolean acceptTransitive;
@Override
public Validated