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

org.codehaus.mojo.versions.api.IncompatibleParentAndProjectMavenVersion Maven / Gradle / Ivy

Go to download

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