Hello,
I uploaded the package acs aem 5.3.0 which is cloud compatible but I am unable to upload it.
I want to enable ACS AEM Commons on AEM instance.Can anyone tell what is missing ?
Solved! Go to Solution.
Views
Replies
Total Likes
Hi @Sucheta_T and @Lakshmi9
Please check below cloud compatablity version link
https://adobe-consulting-services.github.io/acs-aem-commons/pages/compatibility.html
And in AEM cloud you can not install the pacakge directly from pacakge manager.
Please add below code into your "all" modules so that it will be deployed as part of the code
<embedded>
<groupId>com.adobe.acs</groupId>
<artifactId>acs-aem-commons-ui.apps</artifactId>
<type>zip</type>
<target>/apps/<proect-name>-packages/application/install</target>
</embedded>
<embedded>
<groupId>com.adobe.acs</groupId>
<artifactId>acs-aem-commons-ui.content</artifactId>
<type>zip</type>
<target>/apps/<project-name>-packages/content/install</target>
</embedded>
</embeddeds>
<dependency>
<groupId>com.adobe.acs</groupId>
<artifactId>acs-aem-commons-ui.content</artifactId>
<version>5.1.2</version>
<type>zip</type>
<classifier>min</classifier> <!-- optional, see below -->
</dependency>
<dependency>
<groupId>com.adobe.acs</groupId>
<artifactId>acs-aem-commons-ui.apps</artifactId>
<version>5.1.2</version>
<type>zip</type>
<classifier>min</classifier> <!-- optional, see below -->
</dependency>
Hi Team,
I'm also facing the same issue while uploading the acs commons 5.3.0 package on dev environment. Could someone help me that what are all the steps need to follow before updating the version of acs package?
And also clarify my queries below.
1. Does it override the existing data like /etc, /conf, and other related paths? - If yes, then what would be the best approach to keep the existing data.
2. I want to access this page "/acs-commons.html/etc/acs-commons/exporters" on higher environments directly, since I don't have access for miscadmin. Can I access it directly after AEM cloud & acs commons versions updated?
Thank you
Hi @Sucheta_T and @Lakshmi9
Please check below cloud compatablity version link
https://adobe-consulting-services.github.io/acs-aem-commons/pages/compatibility.html
And in AEM cloud you can not install the pacakge directly from pacakge manager.
Please add below code into your "all" modules so that it will be deployed as part of the code
<embedded>
<groupId>com.adobe.acs</groupId>
<artifactId>acs-aem-commons-ui.apps</artifactId>
<type>zip</type>
<target>/apps/<proect-name>-packages/application/install</target>
</embedded>
<embedded>
<groupId>com.adobe.acs</groupId>
<artifactId>acs-aem-commons-ui.content</artifactId>
<type>zip</type>
<target>/apps/<project-name>-packages/content/install</target>
</embedded>
</embeddeds>
<dependency>
<groupId>com.adobe.acs</groupId>
<artifactId>acs-aem-commons-ui.content</artifactId>
<version>5.1.2</version>
<type>zip</type>
<classifier>min</classifier> <!-- optional, see below -->
</dependency>
<dependency>
<groupId>com.adobe.acs</groupId>
<artifactId>acs-aem-commons-ui.apps</artifactId>
<version>5.1.2</version>
<type>zip</type>
<classifier>min</classifier> <!-- optional, see below -->
</dependency>
I am facing similar issue , I am able to do in local but in AEM Cloud, deployment is failing if we update the version to 5.3.0 in pom file.
Views
Likes
Replies