This is an automated email from the ASF dual-hosted git repository. heneveld pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/brooklyn-ui.git
commit 06843f620dca5b4801ea23318d1c23f0de322109 Author: Alex Heneveld <[email protected]> AuthorDate: Tue Apr 6 16:57:32 2021 +0100 further fix to service-component record generation --- modularity-server/external-modules/pom.xml | 7 +++++++ modularity-server/metadata-registry/pom.xml | 7 +++++++ 2 files changed, 14 insertions(+) diff --git a/modularity-server/external-modules/pom.xml b/modularity-server/external-modules/pom.xml index a6e359d..fc23600 100644 --- a/modularity-server/external-modules/pom.xml +++ b/modularity-server/external-modules/pom.xml @@ -101,6 +101,13 @@ <configuration> <exportScr>true</exportScr> <instructions> + + <!-- exportScr and below from https://felix.apache.org/documentation/faqs/apache-felix-bundle-plugin-faq.html --> + <!-- Enable processing of OSGI DS component annotations --> + <_dsannotations>*</_dsannotations> + <!-- Enable processing of OSGI metatype annotations --> + <_metatypeannotations>*</_metatypeannotations> + <Import-Package> org.slf4j, * diff --git a/modularity-server/metadata-registry/pom.xml b/modularity-server/metadata-registry/pom.xml index bdb7284..ce62d4a 100644 --- a/modularity-server/metadata-registry/pom.xml +++ b/modularity-server/metadata-registry/pom.xml @@ -113,6 +113,13 @@ <configuration> <exportScr>true</exportScr> <instructions> + + <!-- exportScr and below from https://felix.apache.org/documentation/faqs/apache-felix-bundle-plugin-faq.html --> + <!-- Enable processing of OSGI DS component annotations --> + <_dsannotations>*</_dsannotations> + <!-- Enable processing of OSGI metatype annotations --> + <_metatypeannotations>*</_metatypeannotations> + <Import-Package> javax.ws.rs, javax.servlet,
