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

com.applitools.utils.ClassVersionGetter Maven / Gradle / Ivy

The newest version!
package com.applitools.utils;

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

public class ClassVersionGetter {
    private static final Properties properties = new Properties();

    static {
        try {
            properties.load(ClassVersionGetter.class.getClassLoader().getResourceAsStream("sdk.version"));
        } catch (IOException e) {
            e.printStackTrace();
        }
    }

    public static String CURRENT_VERSION = properties.getProperty("applitools_sdk_version");
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy