A custom AEM application contains Bundle A and Bundle B. Bundle A has a dependency to Bundle B via Import-Package.
How can both bundles be deployed most efficiently across all environments?
A custom AEM application contains Bundle A and Bundle B. Bundle A has a dependency to Bundle B via Import-Package.
How can both bundles be deployed most efficiently across all environments?
The most efficient way to deploy both bundles while maintaining the correct installation order is to embed both bundles in a single content package and specify the installation order using the 'installationOrder' property in the package properties. This ensures that the bundles are installed in the desired sequence, addressing the dependency outlined in Import-Package.
D is the correct answer