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 ff76d5ff3bbbe7dd7a0121dbbd25d34bc987ce90 Author: Claus Ibsen <[email protected]> AuthorDate: Sat Mar 13 17:35:06 2021 +0100 CAMEL-16351: camel-core - Camel JARs OSGi MANIFEST.MF has unwanted include-resources --- core/pom.xml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/core/pom.xml b/core/pom.xml index d03a570..1778090 100644 --- a/core/pom.xml +++ b/core/pom.xml @@ -152,6 +152,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>
