SLI provider needs Dynamic-ImportPackage
The SLI provider package needs the option Dynamic-ImportPackage set in
its manifest to allow it to bypass normal OSGi classpath isolation.
Change-Id: I93be9ed111f72197db16f1b486b2102cbb9bbcdb
Issue-ID: CCSDK-268
Signed-off-by: Timoney, Dan (dt5972) <dt5972@att.com>
diff --git a/sli/provider/pom.xml b/sli/provider/pom.xml
index 8a5e250..619a8af 100755
--- a/sli/provider/pom.xml
+++ b/sli/provider/pom.xml
@@ -89,4 +89,21 @@
<scope>test</scope>
</dependency>
</dependencies>
+
+ <build>
+ <plugins>
+ <plugin>
+ <groupId>org.apache.felix</groupId>
+ <artifactId>maven-bundle-plugin</artifactId>
+ <extensions>true</extensions>
+ <configuration>
+ <instructions>
+ <DynamicImport-Package>*</DynamicImport-Package>
+ </instructions>
+ </configuration>
+
+ </plugin>
+ </plugins>
+
+ </build>
</project>