Is there any relationship between the bundles mentioned in the <dependencies> tag and the <Import-Package> tag? I mean if we don’t define dependency, then maven-bundle-plugin can not find the packages in <Import-Package> tag?
Is there any relationship between the bundles mentioned in the <dependencies> tag and the
Share
Maven uses the jars listed in the dependencies section to create a classpath. This class path is used by bnd (the engine in the maven bundle plugin) to analyze what your code is referring to through byte code analysis.