Skip to content

Commit

Permalink
Forcing one of the files to change so we might actually get a new build.
Browse files Browse the repository at this point in the history
  • Loading branch information
pspeed42 committed Feb 13, 2017
1 parent 2761bc3 commit af04bf9
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions jme3-core/src/main/java/com/jme3/system/JmeVersion.java
Original file line number Diff line number Diff line change
Expand Up @@ -38,27 +38,27 @@

/**
* 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"));
} catch (IOException ex) {
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", "");
Expand Down

0 comments on commit af04bf9

Please sign in to comment.