Amendments due to migration to logback
This commit is contained in:
@ -2,17 +2,19 @@ package biz.redsoft.sample;
|
||||
|
||||
import biz.redsoft.util.IncorrectVersionFormat;
|
||||
import biz.redsoft.util.VersionUtils;
|
||||
import org.apache.log4j.Logger;
|
||||
|
||||
import java.io.IOException;
|
||||
import java.io.InputStream;
|
||||
import java.util.Properties;
|
||||
|
||||
import org.slf4j.Logger;
|
||||
import org.slf4j.LoggerFactory;
|
||||
|
||||
/**
|
||||
* @author Victor Bellavin
|
||||
*/
|
||||
public class Version {
|
||||
public static final Logger LOGGER = Logger.getLogger(Version.class);
|
||||
public static final Logger LOGGER = LoggerFactory.getLogger(Version.class);
|
||||
|
||||
public static final String VERSION_FILE = "version.properties";
|
||||
public static final String VERSION_PROP_NAME = "version";
|
||||
|
Reference in New Issue
Block a user