From af04bf9d22e283d0f0fa450887c0a31aeb285e8f Mon Sep 17 00:00:00 2001 From: Paul Speed Date: Sun, 12 Feb 2017 22:35:55 -0500 Subject: [PATCH] Forcing one of the files to change so we might actually get a new build. --- .../src/main/java/com/jme3/system/JmeVersion.java | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/jme3-core/src/main/java/com/jme3/system/JmeVersion.java b/jme3-core/src/main/java/com/jme3/system/JmeVersion.java index 0492df950d..0cd71f0727 100644 --- a/jme3-core/src/main/java/com/jme3/system/JmeVersion.java +++ b/jme3-core/src/main/java/com/jme3/system/JmeVersion.java @@ -38,14 +38,14 @@ /** * Pulls in version info from the version.properties file. - * + * * @author Kirill Vainer */ public class JmeVersion { - + private static final Logger logger = Logger.getLogger(JmeVersion.class.getName()); private static final Properties props = new Properties(); - + static { try { props.load(JmeVersion.class.getResourceAsStream("version.properties")); @@ -53,12 +53,12 @@ public class JmeVersion { logger.log(Level.WARNING, "Unable to read version info!", ex); } } - + public static final String BUILD_DATE = props.getProperty("build.date", "1900-01-01"); public static final String BRANCH_NAME = props.getProperty("git.branch", "unknown"); public static final String GIT_HASH = props.getProperty("git.hash", ""); public static final String GIT_SHORT_HASH = props.getProperty("git.hash.short", ""); - public static final String GIT_TAG = props.getProperty("git.tag", ""); + public static final String GIT_TAG = props.getProperty("git.tag", "3.1-unknown"); public static final String VERSION_NUMBER = props.getProperty("version.number", ""); public static final String VERSION_TAG = props.getProperty("version.tag", ""); public static final String VERSION_FULL = props.getProperty("version.full", "");