diff options
author | Timoney, Dan (dt5972) <dt5972@att.com> | 2018-05-04 14:02:50 -0400 |
---|---|---|
committer | Timoney, Dan (dt5972) <dt5972@att.com> | 2018-05-04 14:02:50 -0400 |
commit | 6b70635e6fbd031cce667dd1449c0e7cdcdf73fd (patch) | |
tree | 2588895d62c0f099f35ded884971f56df8b3b7c8 /sli | |
parent | 1f66572b9e9622634086922caf73f82c24ab50da (diff) |
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>
Diffstat (limited to 'sli')
-rwxr-xr-x | sli/provider/pom.xml | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/sli/provider/pom.xml b/sli/provider/pom.xml index 8a5e2507..619a8af5 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> |