This is an automated email from the ASF dual-hosted git repository. vy pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/logging-log4j2.git
commit 80a619b8a7965c477bea6c9ca279a26df154c002 Author: Volkan Yazici <[email protected]> AuthorDate: Fri Jan 21 17:01:52 2022 +0100 LOG4J2-3356 Fix maven-bundle-plugin configuration of JSON Template Layout. --- log4j-layout-template-json/pom.xml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/log4j-layout-template-json/pom.xml b/log4j-layout-template-json/pom.xml index 7f082e0..8992b8f 100644 --- a/log4j-layout-template-json/pom.xml +++ b/log4j-layout-template-json/pom.xml @@ -213,8 +213,9 @@ <artifactId>maven-bundle-plugin</artifactId> <configuration> <instructions> - <Fragment-Host>org.apache.logging.log4j.layout.template.json</Fragment-Host> - <Export-Package>*</Export-Package> + <Fragment-Host>org.apache.logging.log4j.core</Fragment-Host> + <Bundle-SymbolicName>org.apache.logging.log4j.layout.template.json</Bundle-SymbolicName> + <Export-Package>org.apache.logging.log4j.layout.template.json</Export-Package> </instructions> </configuration> </plugin>
