This page is about how we do and don't do dependency management in the Sling project.
Maven provides projects with a nice feature called dependency management. In Sling we currently use this feature to declare the non-Sling dependencies of modules in the parent POM.
After working with this some time and trying to upgrade various dependencies we came to the conclusion, that using Maven dependency management is not going to work out in the Sling scenario.
Why? Maven's dependency management is aimed at traditional applications, which are glued together statically during the build process. For this environment, dependency management is a great thing, since it guarantees a consistent application setup.
In a dynamic application setup as provided by an OSGi framework the static dependency management of Maven does not help. Actually it even causes problematic results with respect to backwards compatibility when using the Maven Bundle Plugin.
Why's that? The Maven Bundle Plugin (or rather the underlying Bnd library constructs the bundle manifest and will generally automatically create the Import-Package header. If the providing library (from Maven's dependency list) has Export-Package
headers with version numbers, the Maven Bundle Plugin will insert the respective version numbers for the Import-Package
header. This makes perfect sense, because it is expected, that the artifact required at least the given package version.
When using Maven dependency management, upgrading any dependencies in the parent POM may automatically increase the version numbers in the Import-Package
headers and hence may cause any such bundle to fail resolution if deployed - even though the bundle did not change and does not really require a new version of the dependency.
So, in the case of OSGi deployment, Maven's dependency management actually interferes with the OSGi framework dependency management.
As a consequence, we dropped dependency management in the parent POM (almost) completely and state the following.
The parent POM only does dependency management for build time dependencies and a very limited number of API dependencies used Sling wide. These dependencies are:
pluginManagement
is still used. Maven plugins are actually build time dependencies and therefore have no influence on the actual deployment.The <dependencyManagement>
element currently contains the following managed dependencies:
For details refer to the pom.xml
of sling-bundle-parent and sling.
All dependencies per module are fully described in terms of version, scope, and classifier by the respective project.
The version of the module dependency should be selected according to the following rule: The lowest version providing the functionality required by the module (or bundle). By required functionality we basically mean provided API.
Generally there is a constant flow of releases of dependent libraries. In general this should not cause the dependency version number of a using module to be increased. There is two exceptions, though:
Import-Package
version range this requires a bump on the minor segment of the bundle version.