How to specify package dependencies in Maven project
Hi All,
According to https://docs.adobe.com/content/help/en/experience-manager-cloud-manager/using/how-to-use/deploying-code.html#deployment-process , package dependencies determine the deployment order when deploying using Cloud Manager.
How do I specify the package dependencies so that I can control the order in which Cloud Manager deploys packages?
I tried adding the code below to the <dependencies> section in the pom.xml and it has not affected Cloud Manager package deployment order?
<dependency>
<groupId>com.myproject.ecomm.aem</groupId>
<artifactId>myproject.ui.thirdpartypackages</artifactId>
<version>${project.version}</version>
<type>zip</type>
</dependency>
Thanks and best regards,
Robert
