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

org.codehaus.mojo.buildhelper.versioning.Versioning Maven / Gradle / Ivy

Go to download

This plugin contains various small independent goals to assist with Maven build lifecycle

There is a newer version: 3.6.0
Show newest version
package org.codehaus.mojo.buildhelper.versioning;

public interface Versioning
{

    boolean isSnapshot();
    
    int getMajor();

    int getMinor();

    int getPatch();

    String getAsOSGiVersion();

    int getBuildNumber();

    String getQualifier();

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy