Skip to content
This repository has been archived by the owner on Jul 13, 2022. It is now read-only.

Commit

Permalink
ROO-3664: Prevent deploy of eclipse roo shell bundle with version 1.2…
Browse files Browse the repository at this point in the history
….0 when Spring Roo 2.x is used
  • Loading branch information
jcagarcia committed Sep 3, 2015
1 parent 3e0087e commit e50fd64
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -295,7 +295,7 @@ private static boolean shouldAutoDeploy(String filename, String rooVersion) {
return matchesVersion("[1.1.0, 1.2.0)", rooVersion);
}
if (filename.startsWith("org.springframework.roo.shell.eclipse-1.2.0")) {
return matchesVersion("1.2.0", rooVersion);
return matchesVersion("[1.2.0, 1.4.0)", rooVersion);
}
if (filename.startsWith("org.springframework.roo.shell.eclipse-2.0.0")) {
return matchesVersion("2.0.0", rooVersion);
Expand Down

0 comments on commit e50fd64

Please sign in to comment.