File tree 1 file changed +5
-5
lines changed
jme3-core/src/main/java/com/jme3/system
1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change 38
38
39
39
/**
40
40
* Pulls in version info from the version.properties file.
41
- *
41
+ *
42
42
* @author Kirill Vainer
43
43
*/
44
44
public class JmeVersion {
45
-
45
+
46
46
private static final Logger logger = Logger .getLogger (JmeVersion .class .getName ());
47
47
private static final Properties props = new Properties ();
48
-
48
+
49
49
static {
50
50
try {
51
51
props .load (JmeVersion .class .getResourceAsStream ("version.properties" ));
52
52
} catch (IOException ex ) {
53
53
logger .log (Level .WARNING , "Unable to read version info!" , ex );
54
54
}
55
55
}
56
-
56
+
57
57
public static final String BUILD_DATE = props .getProperty ("build.date" , "1900-01-01" );
58
58
public static final String BRANCH_NAME = props .getProperty ("git.branch" , "unknown" );
59
59
public static final String GIT_HASH = props .getProperty ("git.hash" , "" );
60
60
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 " );
62
62
public static final String VERSION_NUMBER = props .getProperty ("version.number" , "" );
63
63
public static final String VERSION_TAG = props .getProperty ("version.tag" , "" );
64
64
public static final String VERSION_FULL = props .getProperty ("version.full" , "" );
You can’t perform that action at this time.
0 commit comments