Change default for BUILD_SERIES to '?'.

This commit is contained in:
asofold 2013-07-17 12:18:54 +02:00
parent f46618c619
commit 63b2cd3156
2 changed files with 2 additions and 2 deletions

View File

@ -76,7 +76,7 @@ public class BuildParameters {
public static final String buildTimeString = getString("BUILD_TIMESTAMP", "?");
/** Indicate something about where this was built. */
public static final String buildSeries = getString("BUILD_SERIES", "UNKNOWN");
public static final String buildSeries = getString("BUILD_SERIES", "?");
/** The build number as given by Jenkins. Integer.MIN_VALUE if not present. */
public static final int buildNumber = getInteger("BUILD_NUMBER", Integer.MIN_VALUE);

View File

@ -165,7 +165,7 @@
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<BUILD_NUMBER>?</BUILD_NUMBER>
<BUILD_SERIES>UNKNOWN</BUILD_SERIES>
<BUILD_SERIES>?</BUILD_SERIES>
</properties>
<groupId>fr.neatmonster</groupId>