io.codemodder.plugins.maven.PomUpdateResult Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of codemodder-plugin-maven Show documentation
Show all versions of codemodder-plugin-maven Show documentation
Plugin for providing Maven dependency management functions to codemods.
package io.codemodder.plugins.maven;
import io.codemodder.DependencyGAV;
import io.codemodder.codetf.CodeTFChangesetEntry;
import java.util.List;
import java.util.Objects;
/** The result of updating a pom file. */
final class PomUpdateResult {
private final List entry;
private final List skippedDependencies;
PomUpdateResult(
final List entry, final List skippedDependencies) {
this.entry = Objects.requireNonNull(entry);
this.skippedDependencies = Objects.requireNonNull(skippedDependencies);
}
List getEntry() {
return entry;
}
List getSkippedDependencies() {
return skippedDependencies;
}
}