Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMat Booth2015-01-20 14:12:40 +0000
committerAlexander Kurtakov2015-01-20 15:09:41 +0000
commitbbd6f0cd39c60992f4d3e097c1e3b002ef2e246b (patch)
tree6614882a7d2a9b7b97072a4e5578bd2fa1d4fb6a
parent441afd93cd3bf5bba757dab1289bb704ccd61cb3 (diff)
downloadorg.eclipse.linuxtools-bbd6f0cd39c60992f4d3e097c1e3b002ef2e246b.tar.gz
org.eclipse.linuxtools-bbd6f0cd39c60992f4d3e097c1e3b002ef2e246b.tar.xz
org.eclipse.linuxtools-bbd6f0cd39c60992f4d3e097c1e3b002ef2e246b.zip
We use the hamcrest API directly, it should be explicitly
called out in the manifest so we don't rely on other bundles re-exporting API. Change-Id: Ifb73f76f289a0b430f1ba0185aaae782fb03cf7b Signed-off-by: Mat Booth <mat.booth@redhat.com> Reviewed-on: https://git.eclipse.org/r/39940 Reviewed-by: Alexander Kurtakov <akurtako@redhat.com> Tested-by: Alexander Kurtakov <akurtako@redhat.com>
-rw-r--r--perf/org.eclipse.linuxtools.perf.swtbot.tests/META-INF/MANIFEST.MF1
-rw-r--r--profiling/org.eclipse.linuxtools.profiling.provider.tests/META-INF/MANIFEST.MF1
2 files changed, 2 insertions, 0 deletions
diff --git a/perf/org.eclipse.linuxtools.perf.swtbot.tests/META-INF/MANIFEST.MF b/perf/org.eclipse.linuxtools.perf.swtbot.tests/META-INF/MANIFEST.MF
index f00e6e2a82..9e97c33af3 100644
--- a/perf/org.eclipse.linuxtools.perf.swtbot.tests/META-INF/MANIFEST.MF
+++ b/perf/org.eclipse.linuxtools.perf.swtbot.tests/META-INF/MANIFEST.MF
@@ -9,6 +9,7 @@ Bundle-ActivationPolicy: lazy
Bundle-Localization: plugin
Fragment-Host: org.eclipse.linuxtools.perf
Require-Bundle: org.junit,
+ org.hamcrest.core,
org.eclipse.linuxtools.profiling.tests,
org.eclipse.swtbot.eclipse.finder,
org.apache.log4j
diff --git a/profiling/org.eclipse.linuxtools.profiling.provider.tests/META-INF/MANIFEST.MF b/profiling/org.eclipse.linuxtools.profiling.provider.tests/META-INF/MANIFEST.MF
index d244a45626..8f472d659a 100644
--- a/profiling/org.eclipse.linuxtools.profiling.provider.tests/META-INF/MANIFEST.MF
+++ b/profiling/org.eclipse.linuxtools.profiling.provider.tests/META-INF/MANIFEST.MF
@@ -6,6 +6,7 @@ Bundle-Version: 1.2.0.qualifier
Bundle-RequiredExecutionEnvironment: JavaSE-1.7
Fragment-Host: org.eclipse.linuxtools.profiling.launch
Require-Bundle: org.junit;bundle-version="4.0.0",
+ org.hamcrest.core,
org.eclipse.linuxtools.profiling.tests,
org.eclipse.swtbot.eclipse.finder;bundle-version="2.0.5",
org.apache.log4j

Back to the top