String versionWithoutRevision(String value) { List<String> v = value.split("-"); if (v.length > 0) { return v[0]; } return value; }