Repository: johnzon Updated Branches: refs/heads/master 25984cbed -> 2f0cb1b54
JOHNZON-131 James Carman patch to handle mapper.internal package in jsonb - OSGi Project: http://git-wip-us.apache.org/repos/asf/johnzon/repo Commit: http://git-wip-us.apache.org/repos/asf/johnzon/commit/2f0cb1b5 Tree: http://git-wip-us.apache.org/repos/asf/johnzon/tree/2f0cb1b5 Diff: http://git-wip-us.apache.org/repos/asf/johnzon/diff/2f0cb1b5 Branch: refs/heads/master Commit: 2f0cb1b54bb216280ba55b71373d3c3165ae4e8c Parents: 25984cb Author: rmannibucau <[email protected]> Authored: Sat Jun 24 15:27:46 2017 +0200 Committer: rmannibucau <[email protected]> Committed: Sat Jun 24 15:27:46 2017 +0200 ---------------------------------------------------------------------- johnzon-mapper/pom.xml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/johnzon/blob/2f0cb1b5/johnzon-mapper/pom.xml ---------------------------------------------------------------------- diff --git a/johnzon-mapper/pom.xml b/johnzon-mapper/pom.xml index b9529f0..48a504e 100644 --- a/johnzon-mapper/pom.xml +++ b/johnzon-mapper/pom.xml @@ -71,4 +71,18 @@ <staging.directory>${project.parent.reporting.outputDirectory}</staging.directory> </properties> <packaging>bundle</packaging> + + <build> + <plugins> + <plugin> + <groupId>org.apache.felix</groupId> + <artifactId>maven-bundle-plugin</artifactId> + <configuration> + <instructions> + <Export-Package>{local-packages};-split-package:=error,org.apache.johnzon.mapper.internal</Export-Package> + </instructions> + </configuration> + </plugin> + </plugins> + </build> </project>
