When new AEM project is created we may find OSGI components are not displayed in /system/console/components or in manifest.mf or in bundle.
To avoid this add the below plugin in the parent pom.xml and rebuild the project
To avoid this add the below plugin in the parent pom.xml and rebuild the project
<plugin> <groupId>org.apache.felix</groupId> <artifactId>maven-bundle-plugin</artifactId> <version>2.3.7</version> <configuration> <instructions> <Embed-Dependency>*;scope=compile|runtime</Embed-Dependency> <Embed-Directory>OSGI-INF/lib</Embed-Directory> <Embed-Transitive>true</Embed-Transitive> </instructions> </configuration> </plugin>
No comments :
Post a Comment