org.openrewrite.maven.AddManagedDependency Maven / Gradle / Ivy
Show all versions of rewrite-maven Show documentation
/*
* Copyright 2021 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 org.jspecify.annotations.Nullable;
import org.openrewrite.*;
import org.openrewrite.internal.StringUtils;
import org.openrewrite.marker.SearchResult;
import org.openrewrite.maven.table.MavenMetadataFailures;
import org.openrewrite.maven.trait.MavenDependency;
import org.openrewrite.maven.tree.*;
import org.openrewrite.semver.LatestRelease;
import org.openrewrite.semver.Semver;
import org.openrewrite.semver.VersionComparator;
import org.openrewrite.xml.tree.Xml;
import java.util.ArrayList;
import java.util.List;
import java.util.Objects;
import static java.util.Objects.requireNonNull;
@Value
@EqualsAndHashCode(callSuper = false)
public class AddManagedDependency extends ScanningRecipe {
@EqualsAndHashCode.Exclude
transient MavenMetadataFailures metadataFailures = new MavenMetadataFailures(this);
@Option(displayName = "Group",
description = "The first part of a dependency coordinate 'org.apache.logging.log4j:ARTIFACT_ID:VERSION'.",
example = "org.apache.logging.log4j")
String groupId;
@Option(displayName = "Artifact",
description = "The second part of a dependency coordinate 'org.apache.logging.log4j:log4j-bom:VERSION'.",
example = "log4j-bom")
String artifactId;
@Option(displayName = "Version",
description = "An exact version number or node-style semver selector used to select the version number.",
example = "latest.release")
String version;
@Option(displayName = "Scope",
description = "An optional scope to use for the dependency management tag.",
example = "import",
valid = {"import", "runtime", "provided", "test"},
required = false)
@Nullable
String scope;
@Option(displayName = "Type",
description = "An optional type to use for the dependency management tag.",
valid = {"jar", "pom", "war"},
example = "pom",
required = false)
@Nullable
String type;
@Option(displayName = "Classifier",
description = "An optional classifier to use for the dependency management tag",
example = "test",
required = false)
@Nullable
String classifier;
@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 29.0-jre",
example = "-jre",
required = false)
@Nullable
String versionPattern;
@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 glob expression for group:artifact",
description = "Only add managed dependencies to projects having a dependency matching the expression.",
example = "org.apache.logging.log4j:log4j*",
required = false)
@Nullable
String onlyIfUsing;
@Option(displayName = "Add to the root pom",
description = "Add to the root pom where root is the eldest parent of the pom within the source set.",
required = false)
@Nullable
Boolean addToRootPom;
@Override
public Validated