org.codehaus.mojo.buildhelper.versioning.Versioning Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of build-helper-maven-plugin Show documentation
Show all versions of build-helper-maven-plugin Show documentation
This plugin contains various small independent goals to assist with Maven build lifecycle
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