Repository: aries-containers Updated Branches: refs/heads/master 5ec36bb43 -> 3efdf0794
Embed the tiny Felix JSON parser in the bundle. Project: http://git-wip-us.apache.org/repos/asf/aries-containers/repo Commit: http://git-wip-us.apache.org/repos/asf/aries-containers/commit/3efdf079 Tree: http://git-wip-us.apache.org/repos/asf/aries-containers/tree/3efdf079 Diff: http://git-wip-us.apache.org/repos/asf/aries-containers/diff/3efdf079 Branch: refs/heads/master Commit: 3efdf07944f8539e38de8a328aee1970ec9cb6d1 Parents: 5ec36bb Author: David Bosschaert <[email protected]> Authored: Thu May 25 17:07:17 2017 +0100 Committer: David Bosschaert <[email protected]> Committed: Thu May 25 17:07:17 2017 +0100 ---------------------------------------------------------------------- containers-docker-local/pom.xml | 22 ++++++++++++++++++++++ containers-parent/pom.xml | 2 +- 2 files changed, 23 insertions(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/aries-containers/blob/3efdf079/containers-docker-local/pom.xml ---------------------------------------------------------------------- diff --git a/containers-docker-local/pom.xml b/containers-docker-local/pom.xml index 4c67b7c..b74d85a 100644 --- a/containers-docker-local/pom.xml +++ b/containers-docker-local/pom.xml @@ -46,5 +46,27 @@ <version>1.10.1-SNAPSHOT</version> </dependency> </dependencies> + + <build> + <plugins> + <plugin> + <groupId>biz.aQute.bnd</groupId> + <artifactId>bnd-maven-plugin</artifactId> + <version>3.3.0</version> + <executions> + <execution> + <goals> + <goal>bnd-process</goal> + </goals> + </execution> + </executions> + <configuration> + <bnd><![CDATA[ + Conditional-Package: org.apache.felix.utils.json.* + ]]></bnd> + </configuration> + </plugin> + </plugins> + </build> </project> http://git-wip-us.apache.org/repos/asf/aries-containers/blob/3efdf079/containers-parent/pom.xml ---------------------------------------------------------------------- diff --git a/containers-parent/pom.xml b/containers-parent/pom.xml index 7359e4c..3cd7b42 100644 --- a/containers-parent/pom.xml +++ b/containers-parent/pom.xml @@ -106,7 +106,7 @@ <configuration> <bnd><![CDATA[ -exportcontents: ${packages;VERSIONED} - -removeheaders: Private-Package, Include-Resource, Tool + -removeheaders: Private-Package, Include-Resource, Tool, Conditional-Package ]]></bnd> </configuration> </plugin>
