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

com.cryptape.cita.utils.Version Maven / Gradle / Ivy

There is a newer version: 1.0.0
Show newest version
package com.cryptape.cita.utils;

import java.io.IOException;
import java.util.Properties;

/**
 * Build version utility method.
 */
public class Version {

    private Version() {}

    public static final String DEFAULT = "none";

    private static final String TIMESTAMP = "timestamp";
    private static final String VERSION = "version";

    public static String getVersion() throws IOException {
        return loadProperties().getProperty(VERSION);
    }

    public static String getTimestamp() throws IOException {
        return loadProperties().getProperty(TIMESTAMP);
    }

    private static Properties loadProperties() throws IOException {
        Properties properties = new Properties();
        properties.load(Version.class.getResourceAsStream("/cita_version.properties"));
        return properties;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy