Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichael Keppler2016-04-28 16:26:32 +0000
committerMichael Keppler2016-04-28 16:26:32 +0000
commit80b4c575275b7c96a670c3945ae696dcd02f59a6 (patch)
treeafc043e6005f1621bcb093bb1f9c6e5f2b814495
parent66ba85b6100bdac3d433d79d93215de06246f814 (diff)
downloadorg.eclipse.swtbot-80b4c575275b7c96a670c3945ae696dcd02f59a6.tar.gz
org.eclipse.swtbot-80b4c575275b7c96a670c3945ae696dcd02f59a6.tar.xz
org.eclipse.swtbot-80b4c575275b7c96a670c3945ae696dcd02f59a6.zip
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>
-rw-r--r--org.eclipse.swtbot.swt.finder/META-INF/MANIFEST.MF4
1 files changed, 2 insertions, 2 deletions
diff --git a/org.eclipse.swtbot.swt.finder/META-INF/MANIFEST.MF b/org.eclipse.swtbot.swt.finder/META-INF/MANIFEST.MF
index 349e1bc9..e32a125d 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 @@ Export-Package: org.eclipse.swtbot.swt.finder,
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 @@ Import-Package: junit.framework;version="4.5.0",
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"

Back to the top