This is an automated email from the ASF dual-hosted git repository. ffang pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/camel.git
The following commit(s) were added to refs/heads/master by this push: new 9a24c93 [CAMEL-13664]make installBlueprintAsBundle method in OSGi test framework same behavior as it in Karaf container new 622614f Merge branch 'master' of github.com:apache/camel 9a24c93 is described below commit 9a24c93ae1c8c78befa9dd100596b3ad343a5ca7 Author: Freeman Fang <freeman.f...@gmail.com> AuthorDate: Thu Jun 20 16:10:29 2019 -0400 [CAMEL-13664]make installBlueprintAsBundle method in OSGi test framework same behavior as it in Karaf container --- .../src/main/java/org/apache/camel/test/karaf/AbstractFeatureTest.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/components/camel-test-karaf/src/main/java/org/apache/camel/test/karaf/AbstractFeatureTest.java b/components/camel-test-karaf/src/main/java/org/apache/camel/test/karaf/AbstractFeatureTest.java index 1a929d1..3fe4d8a 100644 --- a/components/camel-test-karaf/src/main/java/org/apache/camel/test/karaf/AbstractFeatureTest.java +++ b/components/camel-test-karaf/src/main/java/org/apache/camel/test/karaf/AbstractFeatureTest.java @@ -121,7 +121,8 @@ public abstract class AbstractFeatureTest { bundle.set("Manifest-Version", "2") .set("Bundle-ManifestVersion", "2") .set("Bundle-SymbolicName", name) - .set("Bundle-Version", "1.0.0"); + .set("Bundle-Version", "1.0.0") + .set("DynamicImport-Package", "*"); consumer.accept(bundle); Bundle answer = bundleContext.installBundle(name, bundle.build());