All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.codemodder.plugins.maven.PomUpdateResult Maven / Gradle / Ivy

There is a newer version: 0.97.4
Show newest version
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;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy