I was trying to build an OSGI plugin for dotCMS using the maven-bundle-plugin (3.0.1) and am having an issue with the build failing with an error:
The Bundle Activator com.threeci.dotcms.services.Activator does not implement BundleActivator. The issue is due to dotCMS repackaging the standard osgi framework packages under com.dotcms.repackage as com.dotcms.repackage.org.osgi.framework.BundleActivator which means that the maven bundle tool is unable to successfully verify the Activator matches the expected interface. Is there a way to specify which interface should be used in the bundle activator check via the maven configuration?