io.jexxa.jlegmed.core.JLegMedVersion Maven / Gradle / Ivy
package io.jexxa.jlegmed.core;
final class JLegMedVersion
{
public static final String VERSION = "3.5.1";
public static final String REPOSITORY = "scm:git:https://github.com/jexxa-projects/JLegMed.git/jlegmed-core";
public static final String PROJECT_NAME= "JLegMed-Core";
public static final String BUILD_TIMESTAMP= "2024-11-20T08:24:43+0000";
private JLegMedVersion()
{
//private constructor
}
public static VersionInfo getVersion()
{
return VersionInfo.of()
.version(VERSION)
.repository(REPOSITORY)
.buildTimestamp(BUILD_TIMESTAMP)
.projectName(PROJECT_NAME)
.create();
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy