org.openrewrite.maven.AddPluginDependency 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.ExecutionContext;
import org.openrewrite.Option;
import org.openrewrite.Recipe;
import org.openrewrite.TreeVisitor;
import org.openrewrite.xml.XPathMatcher;
import org.openrewrite.xml.tree.Xml;
import java.util.Optional;
import static org.openrewrite.xml.AddToTagVisitor.addToTag;
import static org.openrewrite.xml.MapTagChildrenVisitor.mapTagChildren;
import static org.openrewrite.xml.SemanticallyEqual.areEqual;
@Value
@EqualsAndHashCode(callSuper = false)
public class AddPluginDependency extends Recipe {
private static final XPathMatcher PLUGINS_MATCHER = new XPathMatcher("/project/build/plugins");
@Option(displayName = "Plugin group",
description = "Group ID of the plugin to which the dependency will be added. " +
"A group ID is the first part of a dependency coordinate `org.openrewrite.maven:rewrite-maven-plugin:VERSION`.",
example = "org.openrewrite.maven")
String pluginGroupId;
@Option(displayName = "Plugin artifact",
description = "Artifact ID of the plugin to which the dependency will be added." +
"The second part of a dependency coordinate `org.openrewrite.maven:rewrite-maven-plugin:VERSION`.",
example = "rewrite-maven-plugin")
String pluginArtifactId;
@Option(displayName = "Group",
description = "The group ID of the dependency to add.",
example = "org.openrewrite.recipe")
String groupId;
@Option(displayName = "Artifact",
description = "The artifact ID of the dependency to add.",
example = "org.openrewrite.recipe")
String artifactId;
@Option(displayName = "Version",
description = "The version of the dependency to add.",
example = "org.openrewrite.recipe")
@Nullable
String version;
@Override
public String getDisplayName() {
return "Add Maven plugin dependencies";
}
@Override
public String getDescription() {
return "Adds the specified dependencies to a Maven plugin. Will not add the plugin if it does not already exist in the pom.";
}
@Override
public TreeVisitor, ExecutionContext> getVisitor() {
return new MavenVisitor() {
@Override
public Xml visitTag(Xml.Tag tag, ExecutionContext ctx) {
Xml.Tag plugins = (Xml.Tag) super.visitTag(tag, ctx);
if (!PLUGINS_MATCHER.matches(getCursor())) {
return plugins;
}
Optional maybePlugin = plugins.getChildren().stream()
.filter(plugin ->
"plugin".equals(plugin.getName()) &&
pluginGroupId.equals(plugin.getChildValue("groupId").orElse(null)) &&
pluginArtifactId.equals(plugin.getChildValue("artifactId").orElse(null))
)
.findAny();
if (!maybePlugin.isPresent()) {
return plugins;
}
Xml.Tag plugin = maybePlugin.get();
Optional maybeDependencies = plugin.getChild("dependencies");
Xml.Tag dependencies;
boolean formatAllDependencies = false;
if (maybeDependencies.isPresent()) {
dependencies = maybeDependencies.get();
} else {
formatAllDependencies = true;
dependencies = Xml.Tag.build(" ").withPrefix("\n");
plugins = addToTag(plugins, plugin, dependencies, getCursor().getParentOrThrow());
}
Xml.Tag newDependencyTag = Xml.Tag.build("\n" + groupId + " \n"
+ artifactId + " " + ((version == null) ? "\n" : "\n" + version + " \n") + " ")
.withPrefix("\n");
// The dependency being added may already exist and may or may not need its version updated
Optional maybeExistingDependency = dependencies.getChildren()
.stream()
.filter(it -> groupId.equals(it.getChildValue("groupId").orElse(null))
&& artifactId.equals(it.getChildValue("artifactId").orElse(null)))
.findAny();
if (maybeExistingDependency.isPresent() && areEqual(newDependencyTag, maybeExistingDependency.get())) {
return plugins;
}
if (maybeExistingDependency.isPresent()) {
plugins = mapTagChildren(plugins, dependencies, it -> {
if (it == maybeExistingDependency.get()) {
return newDependencyTag;
}
return it;
});
} else {
plugins = addToTag(plugins, dependencies, newDependencyTag, getCursor().getParentOrThrow());
}
if (formatAllDependencies) {
plugins = autoFormat(plugins, dependencies, ctx, getCursor().getParentOrThrow());
} else {
plugins = autoFormat(plugins, newDependencyTag, ctx, getCursor().getParentOrThrow());
}
return plugins;
}
};
}
}