File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed
jme3-core/src/main/java/com/jme3/system Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change 3838
3939/**
4040 * Pulls in version info from the version.properties file.
41- *
41+ *
4242 * @author Kirill Vainer
4343 */
4444public class JmeVersion {
45-
45+
4646 private static final Logger logger = Logger .getLogger (JmeVersion .class .getName ());
4747 private static final Properties props = new Properties ();
48-
48+
4949 static {
5050 try {
5151 props .load (JmeVersion .class .getResourceAsStream ("version.properties" ));
5252 } catch (IOException ex ) {
5353 logger .log (Level .WARNING , "Unable to read version info!" , ex );
5454 }
5555 }
56-
56+
5757 public static final String BUILD_DATE = props .getProperty ("build.date" , "1900-01-01" );
5858 public static final String BRANCH_NAME = props .getProperty ("git.branch" , "unknown" );
5959 public static final String GIT_HASH = props .getProperty ("git.hash" , "" );
6060 public static final String GIT_SHORT_HASH = props .getProperty ("git.hash.short" , "" );
61- public static final String GIT_TAG = props .getProperty ("git.tag" , "" );
61+ public static final String GIT_TAG = props .getProperty ("git.tag" , "3.1-unknown " );
6262 public static final String VERSION_NUMBER = props .getProperty ("version.number" , "" );
6363 public static final String VERSION_TAG = props .getProperty ("version.tag" , "" );
6464 public static final String VERSION_FULL = props .getProperty ("version.full" , "" );
You can’t perform that action at this time.
0 commit comments