From e50fd64c30c73ed002d4a56402e580694c999fec Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Juan=20Carlos=20Garc=C3=ADa?= Date: Thu, 3 Sep 2015 09:40:47 +0200 Subject: [PATCH] ROO-3664: Prevent deploy of eclipse roo shell bundle with version 1.2.0 when Spring Roo 2.x is used --- .../org/springframework/roo/shell/eclipse/AutoProcessor.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/org.springframework.ide.eclipse.roo.core/src/org/springframework/roo/shell/eclipse/AutoProcessor.java b/plugins/org.springframework.ide.eclipse.roo.core/src/org/springframework/roo/shell/eclipse/AutoProcessor.java index 16c8eff9b1..c6fbe740e6 100644 --- a/plugins/org.springframework.ide.eclipse.roo.core/src/org/springframework/roo/shell/eclipse/AutoProcessor.java +++ b/plugins/org.springframework.ide.eclipse.roo.core/src/org/springframework/roo/shell/eclipse/AutoProcessor.java @@ -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);