Skip to content

Commit af04bf9

Browse files
committed
Forcing one of the files to change so we might actually get a new build.
1 parent 2761bc3 commit af04bf9

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

jme3-core/src/main/java/com/jme3/system/JmeVersion.java

+5-5
Original file line numberDiff line numberDiff line change
@@ -38,27 +38,27 @@
3838

3939
/**
4040
* Pulls in version info from the version.properties file.
41-
*
41+
*
4242
* @author Kirill Vainer
4343
*/
4444
public 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", "");

0 commit comments

Comments
 (0)