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