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

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

Go to download

Versions Plugin for Maven 2. The Versions Plugin updates the versions of components in the POM.

There is a newer version: 2.1.4
Show newest version
package org.codehaus.mojo.versions.report;

public class IncompatibleParentAndProjectMavenVersion {
    private String parentVersion;
    private String projectVersion;

    public String getParentVersion() {
        return parentVersion;
    }

    public void setParentVersion(String parentVersion) {
        this.parentVersion = parentVersion;
    }

    public String getProjectVersion() {
        return projectVersion;
    }

    public void setProjectVersion(String projectVersion) {
        this.projectVersion = projectVersion;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy