Replaced import-package directives with require-bundle
Fixes dependency issues with newer eclipse versions
diff --git a/org.jacoco.agent.rt.test/META-INF/MANIFEST.MF b/org.jacoco.agent.rt.test/META-INF/MANIFEST.MF
index 68eab75..c840f8b 100644
--- a/org.jacoco.agent.rt.test/META-INF/MANIFEST.MF
+++ b/org.jacoco.agent.rt.test/META-INF/MANIFEST.MF
@@ -6,5 +6,6 @@
Bundle-Vendor: Mountainminds GmbH & Co. KG
Fragment-Host: org.jacoco.agent.rt
Bundle-RequiredExecutionEnvironment: J2SE-1.5
-Import-Package: org.junit;version="[4.0.0,5.0.0)",
- org.objectweb.asm.commons;version="[3.1.0,4.0.0)"
+Require-Bundle: org.junit4;bundle-version="[4.0.0,5.0.0)",
+ org.objectweb.asm;version="[3.1.0,4.0.0)"
+
diff --git a/org.jacoco.agent.rt/META-INF/MANIFEST.MF b/org.jacoco.agent.rt/META-INF/MANIFEST.MF
index f451f19..01b7a7a 100644
--- a/org.jacoco.agent.rt/META-INF/MANIFEST.MF
+++ b/org.jacoco.agent.rt/META-INF/MANIFEST.MF
@@ -4,7 +4,5 @@
Bundle-SymbolicName: org.jacoco.agent.rt
Bundle-Version: 0.2.0.qualifier
Bundle-RequiredExecutionEnvironment: J2SE-1.5
-Import-Package: org.jacoco.core.data,
- org.jacoco.core.instr,
- org.jacoco.core.runtime,
+Require-Bundle: org.jacoco.core,
org.objectweb.asm;version="[3.1.0,4.0.0)"
diff --git a/org.jacoco.ant.test/META-INF/MANIFEST.MF b/org.jacoco.ant.test/META-INF/MANIFEST.MF
index 4aff9f7..fd78853 100644
--- a/org.jacoco.ant.test/META-INF/MANIFEST.MF
+++ b/org.jacoco.ant.test/META-INF/MANIFEST.MF
@@ -6,4 +6,4 @@
Bundle-RequiredExecutionEnvironment: J2SE-1.5
Bundle-Vendor: Mountainminds GmbH & Co. KG and Contributors
Fragment-Host: org.jacoco.core
-Import-Package: org.junit;version="[4.0.0,5.0.0)"
+Require-Bundle: org.junit4;bundle-version="[4.0.0,5.0.0)"
diff --git a/org.jacoco.ant/META-INF/MANIFEST.MF b/org.jacoco.ant/META-INF/MANIFEST.MF
index f3e4a50..0a33351 100644
--- a/org.jacoco.ant/META-INF/MANIFEST.MF
+++ b/org.jacoco.ant/META-INF/MANIFEST.MF
@@ -5,17 +5,8 @@
Bundle-Version: 0.2.0.qualifier
Bundle-RequiredExecutionEnvironment: J2SE-1.5
Bundle-Vendor: Mountainminds GmbH & Co. KG and Contributors
-Import-Package: org.apache.tools.ant,
- org.apache.tools.ant.types,
- org.apache.tools.ant.types.resources,
- org.apache.tools.ant.util,
+Require-Bundle: org.apache.ant,
org.jacoco.agent,
- org.jacoco.core.analysis,
- org.jacoco.core.data,
- org.jacoco.core.instr,
- org.jacoco.core.runtime,
+ org.jacoco.core,
org.jacoco.report,
- org.jacoco.report.csv,
- org.jacoco.report.html,
- org.jacoco.report.xml,
org.objectweb.asm;version="[3.1.0,4.0.0)"
diff --git a/org.jacoco.build/META-INF/MANIFEST.MF b/org.jacoco.build/META-INF/MANIFEST.MF
index 6f0d0b0..243cc00 100644
--- a/org.jacoco.build/META-INF/MANIFEST.MF
+++ b/org.jacoco.build/META-INF/MANIFEST.MF
@@ -5,8 +5,5 @@
Bundle-Version: 0.2.0.qualifier
Bundle-Vendor: Mountainminds GmbH & Co. KG
Bundle-RequiredExecutionEnvironment: J2SE-1.5
-Import-Package: org.apache.tools.ant,
- org.apache.tools.ant.types,
- org.apache.tools.ant.types.resources,
- org.objectweb.asm;version="[3.1.0,4.0.0)",
- org.objectweb.asm.commons;version="[3.1.0,4.0.0)"
+Require-Bundle: org.apache.ant,
+ org.objectweb.asm;bundle-version="[3.1.0,4.0.0)"
diff --git a/org.jacoco.core.test/META-INF/MANIFEST.MF b/org.jacoco.core.test/META-INF/MANIFEST.MF
index eda162c..d148c9c 100644
--- a/org.jacoco.core.test/META-INF/MANIFEST.MF
+++ b/org.jacoco.core.test/META-INF/MANIFEST.MF
@@ -6,5 +6,5 @@
Bundle-Vendor: Mountainminds GmbH & Co. KG
Fragment-Host: org.jacoco.core
Bundle-RequiredExecutionEnvironment: J2SE-1.5
-Import-Package: org.junit;version="[4.0.0,5.0.0)",
- org.objectweb.asm.util;version="[3.1.0,4.0.0)"
+Require-Bundle: org.junit4;bundle-version="[4.0.0,5.0.0)",
+ org.objectweb.asm;bundle-version="[3.1.0,4.0.0)"
diff --git a/org.jacoco.core/META-INF/MANIFEST.MF b/org.jacoco.core/META-INF/MANIFEST.MF
index 080a138..cd3d56f 100644
--- a/org.jacoco.core/META-INF/MANIFEST.MF
+++ b/org.jacoco.core/META-INF/MANIFEST.MF
@@ -5,9 +5,7 @@
Bundle-Version: 0.2.0.qualifier
Bundle-Vendor: Mountainminds GmbH & Co. KG
Bundle-RequiredExecutionEnvironment: J2SE-1.5
-Import-Package: org.objectweb.asm;version="[3.1.0,4.0.0)",
- org.objectweb.asm.commons;version="[3.1.0,4.0.0)",
- org.objectweb.asm.tree;version="[3.1.0,4.0.0)"
+Require-Bundle: org.objectweb.asm;bundle-version="[3.1.0,4.0.0)"
Export-Package: org.jacoco.core,
org.jacoco.core.analysis,
org.jacoco.core.data,
diff --git a/org.jacoco.report.test/META-INF/MANIFEST.MF b/org.jacoco.report.test/META-INF/MANIFEST.MF
index e3e015b..6889d0c 100644
--- a/org.jacoco.report.test/META-INF/MANIFEST.MF
+++ b/org.jacoco.report.test/META-INF/MANIFEST.MF
@@ -6,4 +6,5 @@
Fragment-Host: org.jacoco.report
Bundle-RequiredExecutionEnvironment: J2SE-1.5
Bundle-Vendor: Mountainminds GmbH & Co. KG
-Import-Package: org.junit;version="[4.0.0,5.0.0)"
+Require-Bundle: org.junit4;bundle-version="[4.0.0,5.0.0)"
+
diff --git a/org.jacoco.report/META-INF/MANIFEST.MF b/org.jacoco.report/META-INF/MANIFEST.MF
index bee788b..670a85f 100644
--- a/org.jacoco.report/META-INF/MANIFEST.MF
+++ b/org.jacoco.report/META-INF/MANIFEST.MF
@@ -5,9 +5,8 @@
Bundle-Version: 0.2.0.qualifier
Bundle-RequiredExecutionEnvironment: J2SE-1.5
Bundle-Vendor: Mountainminds GmbH & Co. KG
-Import-Package: org.jacoco.core,
- org.jacoco.core.analysis,
- org.objectweb.asm;version="[3.1.0,4.0.0)"
+Require-Bundle: org.jacoco.core,
+ org.objectweb.asm;bundle-version="[3.1.0,4.0.0)"
Export-Package: org.jacoco.report,
org.jacoco.report.csv,
org.jacoco.report.html,