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

org.sitoolkit.wt.gui.domain.update.VersionCheckMode Maven / Gradle / Ivy

The newest version!
package org.sitoolkit.wt.gui.domain.update;

public enum VersionCheckMode {
    PARENT("versions:display-parent-updates",
            "[INFO] The parent project has a newer version:"), PROPERTY(
                    "versions:display-property-updates",
                    "[INFO] The following version property updates are available:");

    private String updateLine;
    private String pluginGoal;

    private VersionCheckMode(String pluginGoal, String updateLine) {
        this.updateLine = updateLine;
        this.pluginGoal = pluginGoal;
    }

    public String getUpdateLine() {
        return updateLine;
    }

    public String getPluginGoal() {
        return pluginGoal;
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy