
org.codehaus.mojo.versions.report.ArtifactUpdate Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of versions-maven-plugin Show documentation
Show all versions of versions-maven-plugin Show documentation
Versions Plugin for Maven 2. The Versions Plugin updates the versions of components in the POM.
package org.codehaus.mojo.versions.report;
public class ArtifactUpdate {
private Dependency dependency;
private String versionUpdate;
public Dependency getDependency() {
return dependency;
}
public void setDependency(Dependency dependency) {
this.dependency = dependency;
}
public String getVersionUpdate() {
return versionUpdate;
}
public void setVersionUpdate(String versionUpdate) {
this.versionUpdate = versionUpdate;
}
}