diff --git a/tycho-extras/tycho-version-bump-plugin/src/main/java/org/eclipse/tycho/versionbump/UpdateTargetMojo.java b/tycho-extras/tycho-version-bump-plugin/src/main/java/org/eclipse/tycho/versionbump/UpdateTargetMojo.java index 4c4e7ca996..d5c8a54212 100644 --- a/tycho-extras/tycho-version-bump-plugin/src/main/java/org/eclipse/tycho/versionbump/UpdateTargetMojo.java +++ b/tycho-extras/tycho-version-bump-plugin/src/main/java/org/eclipse/tycho/versionbump/UpdateTargetMojo.java @@ -143,7 +143,7 @@ protected void doUpdate() throws IOException, URISyntaxException, ParserConfigur if (!updateMajorVersion) { try { String[] strings = oldVersion.split("\\."); - mavenDependency.setVersion("[," + (Integer.parseInt(strings[0]) + 1) + ")"); + mavenDependency.setVersion("[," + (Integer.parseInt(strings[0]) + 1) + "-alpha)"); } catch (RuntimeException e) { getLog().warn("Can't check for update of " + mavenDependency + " because the version format is not parseable: " + e);