com.fizzed.blaze.ivy.Version Maven / Gradle / Ivy
The newest version!
/**
* DO NOT EDIT THIS FILE (auto generated by fizzed-versionizer-maven-plugin)
*/
package com.fizzed.blaze.ivy;
public final class Version {
private static final String COMMIT="86829a98";
private static final String TIMESTAMP="2023-11-08T18:50:47.143Z";
private static final String VERSION="1.5.2";
private static final String NAME="blaze-ivy";
private static final String VENDOR="com.fizzed";
private static final String LONG_VERSION="1.5.2 (commit 86829a98 @ 2023-11-08T18:50:47.143Z)";
/** Returns the library source control commit tag such as "ac486420" */
static public String getCommit() { return COMMIT; }
/** Returns the library vendor such as "com.fizzed" */
static public String getVendor() { return VENDOR; }
/** Returns the library build timestamp (date) such as "2023-11-08T18:50:47.143Z" */
static public String getTimestamp() { return TIMESTAMP; }
/** Returns the library name such as "blaze-ivy" */
static public String getName() { return NAME; }
/** Returns the library version such as "1.5.2" */
static public String getVersion() { return VERSION; }
/** Returns a longer library version that includes the timestamp such as "1.5.2 (commit 86829a98 @ 2023-11-08T18:50:47.143Z)" */
static public String getLongVersion() { return LONG_VERSION; }
}