Convert maven-bundle-plugin to bnd-maven-plugin for new archetypes
Hi I am using Old archetype which is using maven-bundle-plugin as below.
I want to convert this into bnd-maven-plugin which is part of new archetype .How to convert Import packages,Export Packages and embed dependency for bnd-maven-plugin.we are getting error
in start level 20 but no bundle is exporting these for that start level on running aem-analyzer plugin
<plugin>
<groupId>org.apache.felix</groupId>
<artifactId>maven-bundle-plugin</artifactId>
<extensions>true</extensions>
<configuration>
<instructions>
<!-- Import any version of javax.inject and javax.annotation, to allow
running on multiple versions of AEM -->
<Import-Package>
!org.codehaus.groovy.*,
javax.inject;version=0.0.0,
javax.annotation;version=0.0.0,
!org.bouncycastle.*,
!javax.cache.*
</Import-Package>
<Export-Package>
com.akamai.edgegrid.signer.*
</Export-Package>
<Embed-Dependency>
flying-saucer-core,
flying-saucer-pdf,
jsoup,
javaslang;scope=compile,javaslang-jackson;scope=compile|runtime
</Embed-Dependency>
</instructions>
</configuration>
</dependencies>
</plugin>