8173894: jib reports version "" in jdk10
Summary: Update getVersion function, missing \ in regexp when stripping trailing zeros.
Reviewed-by: erikj
Contributed-by: stefan.sarne@oracle.com
--- a/common/conf/jib-profiles.js Tue Jan 31 21:06:43 2017 -0500
+++ b/common/conf/jib-profiles.js Fri Feb 03 16:03:17 2017 +0100
@@ -1067,7 +1067,7 @@
+ "." + (minor != null ? minor : version_numbers.get("DEFAULT_VERSION_MINOR"))
+ "." + (security != null ? security : version_numbers.get("DEFAULT_VERSION_SECURITY"))
+ "." + (patch != null ? patch : version_numbers.get("DEFAULT_VERSION_PATCH"));
- while (version.match(".*\.0$")) {
+ while (version.match(".*\\.0$")) {
version = version.substring(0, version.length - 2);
}
return version;