I would like to install ACS AEM Tools using Maven. Same as ACS AEM Commons here: https://experienceleaguecommunities.adobe.com/t5/adobe-experience-manager/aem-6-5-using-acs-aem-comm...
I have achieved this in my local instance by making below changes to POM files.
Parent pom.xml:
<dependency>
<groupId>com.adobe.acs</groupId>
<artifactId>acs-aem-tools-content</artifactId>
<type>content-package</type>
<version>1.0.2</version>
<classifier>min</classifier>
</dependency>
all/pom.xml:
<embedded>
<groupId>com.adobe.acs</groupId>
<artifactId>acs-aem-tools-content</artifactId>
<type>content-package</type>
<target>/apps/asda.dam-packages/content/install</target>
</embedded>
<dependency>
<groupId>com.adobe.acs</groupId>
<artifactId>acs-aem-tools-content</artifactId>
<version>1.0.2</version>
<type>content-package</type>
<classifier>min</classifier>
</dependency>
However, while deploying these changes to AEM as cloud service server, "/apps" filters are getting installed. However, "/etc" filters are not getting installed.
Can someone please help?
Thanks,
Lavanya Malyala
Solved! Go to Solution.
Views
Replies
Total Likes
Hi @lmalyala
Are you trying this in AEMaaCS? If yes, then in AEM cloud the ACS AEM tool is not supported and for any functionality that you were using in your previos application will be available with ACS commons. Please refer to the compatability metrics shared
https://adobe-consulting-services.github.io/acs-aem-commons/pages/compatibility.html
https://adobe-consulting-services.github.io/acs-aem-tools/
And to the answer why etc is not installed.
As part of the cloud manager /etc/ is immutable content and any changes to that should be pushed as part of the code and not in the formate of package reference.
Hi @lmalyala
Are you trying this in AEMaaCS? If yes, then in AEM cloud the ACS AEM tool is not supported and for any functionality that you were using in your previos application will be available with ACS commons. Please refer to the compatability metrics shared
https://adobe-consulting-services.github.io/acs-aem-commons/pages/compatibility.html
https://adobe-consulting-services.github.io/acs-aem-tools/
And to the answer why etc is not installed.
As part of the cloud manager /etc/ is immutable content and any changes to that should be pushed as part of the code and not in the formate of package reference.
Views
Likes
Replies