This is an automated email from the ASF dual-hosted git repository. davsclaus pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/camel.git
commit abdd2835897363b92276ed83e6b3b43d3dacee8e Author: Claus Ibsen <[email protected]> AuthorDate: Sat Mar 13 18:46:48 2021 +0100 CAMEL-16351: components - Camel JARs OSGi MANIFEST.MF has unwanted include-resources --- components/pom.xml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/components/pom.xml b/components/pom.xml index 9b0d89c..1afac8e 100644 --- a/components/pom.xml +++ b/components/pom.xml @@ -437,6 +437,8 @@ <Bundle-Activator>${camel.osgi.activator}</Bundle-Activator> <Import-Package>${camel.osgi.import}</Import-Package> <Export-Package>${camel.osgi.export}</Export-Package> + <!-- do not include any resources as not needed--> + <Include-Resource></Include-Resource> <DynamicImport-Package>${camel.osgi.dynamic}</DynamicImport-Package> <Private-Package>${camel.osgi.private.pkg}</Private-Package> <Require-Capability>${camel.osgi.require.capability}</Require-Capability>
