Hi Devs/Archs,
At present, our application parent pom.xml, we are using <aem.sdk.api>2021.6.5540.20210615T210737Z-210527</aem.sdk.api>. <version>2023.12.14697.20231215T125030Z-231200</version>. Our AEMasCS was latest AEM release version. My question was when we ran our application on AEMasCS, which sdk version will be take by AEMasCS ? whether it will take our application pom.xml sdk or AEMasCS latest SDK version? Kindly please let us know your thoughts...
Solved! Go to Solution.
Hi @rajat168
In your case, with AEMasCS using the latest release version and your application's pom.xml specifying aem.sdk.api version 2023.12.14697.20231215T125030Z-231200, AEMasCS most likely will use the SDK version specified in your application.
Here's why:
To confirm which SDK version is actually used:
For more information you can refer to the following links :
Thanks
@rajat168 : Please refer this to see if it clarifies your query: https://experienceleague.adobe.com/docs/experience-manager-cloud-service/content/implementing/develo...
thanks.
Hi @rajat168
In your case, with AEMasCS using the latest release version and your application's pom.xml specifying aem.sdk.api version 2023.12.14697.20231215T125030Z-231200, AEMasCS most likely will use the SDK version specified in your application.
Here's why:
To confirm which SDK version is actually used:
For more information you can refer to the following links :
Thanks
Hi @rajat168
The dependency for the aem.sdk.api in your pom will be used only for dev dependency/compilation, the scope is provided thats means the application will always be using the latest version installed in AEM despite of the version in the POM. It is similar to uber-jar.
<dependency>
<groupId>com.adobe.aem</groupId>
<artifactId>aem-sdk-api</artifactId>
<version>${aem.sdk.api}</version>
<scope>provided</scope>
</dependency>
Its always a best practice to update the api version so that you don't have any unexpected errors in the instance.
thanks much for your response @arunpatidar .
Hi @rajat168
I want to add more documents to help you understand AEM release updates better.
[1] - https://experienceleague.adobe.com/en/docs/experience-manager-cloud-service/content/implementing/dep...
Views
Likes
Replies