Fix junit minimum version

SWTBotJunit4ClassRunner invokes the method ParentRunner.isIgnored(), and
that method is only available since 4.12.

Bug:492532
Change-Id: If14784b9a8f54e65bea28306f80ea9fa7628f5a6
Signed-off-by: Michael Keppler <Michael.Keppler@gmx.de>
diff --git a/org.eclipse.swtbot.swt.finder/META-INF/MANIFEST.MF b/org.eclipse.swtbot.swt.finder/META-INF/MANIFEST.MF
index 349e1bc..e32a125 100644
--- a/org.eclipse.swtbot.swt.finder/META-INF/MANIFEST.MF
+++ b/org.eclipse.swtbot.swt.finder/META-INF/MANIFEST.MF
@@ -19,7 +19,7 @@
 Bundle-Vendor: Eclipse.org - SWTBot
 Bundle-RequiredExecutionEnvironment: J2SE-1.5
 Eclipse-BuddyPolicy: registered
-Import-Package: junit.framework;version="4.5.0",
+Import-Package: junit.framework;version="4.12.0",
  org.apache.log4j;version="[1.2.13,1.3.0)",
  org.eclipse.jface.bindings.keys,
  org.eclipse.jface.util,
@@ -29,6 +29,6 @@
  org.eclipse.swt.events,
  org.eclipse.swt.graphics,
  org.eclipse.swt.widgets,
- org.junit;version="4.5.0"
+ org.junit;version="4.12.0"
 Require-Bundle: org.hamcrest.core;bundle-version="1.3.0",
  org.hamcrest.library;bundle-version="1.3.0"