
org.codehaus.mojo.versions.api.IncompatibleParentAndProjectMavenVersion 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.
The newest version!
package org.codehaus.mojo.versions.api;
import org.apache.maven.artifact.versioning.ArtifactVersion;
public class IncompatibleParentAndProjectMavenVersion {
private final ArtifactVersion parentVersion;
private final ArtifactVersion projectVersion;
public IncompatibleParentAndProjectMavenVersion(ArtifactVersion parentVersion, ArtifactVersion projectVersion) {
this.parentVersion = parentVersion;
this.projectVersion = projectVersion;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy