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

io.jexxa.core.JexxaVersion Maven / Gradle / Ivy

There is a newer version: 8.1.5
Show newest version
package io.jexxa.core;

final class JexxaVersion
{
    public static final String VERSION = "8.1.4";
    public static final String REPOSITORY = "scm:git:https://github.com/jexxa-projects/Jexxa.git/jexxa-core";
    public static final String PROJECT_NAME= "Jexxa-Core";
    public static final String BUILD_TIMESTAMP= "2024-11-01T16:30:02+0000";

    private JexxaVersion()
    {
        //private constructor
    }

    public static VersionInfo getJexxaVersion()
    {
        return VersionInfo.of()
                .version(VERSION)
                .repository(REPOSITORY)
                .buildTimestamp(BUILD_TIMESTAMP)
                .projectName(PROJECT_NAME)
                .create();
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy