Hi Team,
Hope you are doing well.
Our requirement is to install ACS AEM Tools(ACS AEM Tools) in AEMaaCS via CI/CD.
Request you to please help us solve this requirement.
Thanks & Regards,
Vishal Jain
@EstebanBustamante
@arunpatidar
@Harwinder-singh
@sravs
@abhishekanand_
Solved! Go to Solution.
Topics help categorize Community content and increase your ability to discover relevant content.
Views
Replies
Total Likes
hi @Vishal_Jain03,
ACS AEM Tools is accessible through the Maven public repository, allowing you to utilize the artifactId filevault-package-maven-plugin for embedding. You can refer to AEM Core Components for an example on how to do it: here
Sample:
<plugin>
<groupId>org.apache.jackrabbit</groupId>
<artifactId>filevault-package-maven-plugin</artifactId>
...
<configuration>
<embeddedTarget>/apps/core/wcm/install</embeddedTarget>
<embeddeds>
<embedded>
<groupId>${project.groupId}</groupId>
<artifactId>core.wcm.components.core</artifactId>
<filter>true</filter>
<isAllVersionsFilter>true</isAllVersionsFilter>
</embedded>
...
hi @Vishal_Jain03,
ACS AEM Tools is accessible through the Maven public repository, allowing you to utilize the artifactId filevault-package-maven-plugin for embedding. You can refer to AEM Core Components for an example on how to do it: here
Sample:
<plugin>
<groupId>org.apache.jackrabbit</groupId>
<artifactId>filevault-package-maven-plugin</artifactId>
...
<configuration>
<embeddedTarget>/apps/core/wcm/install</embeddedTarget>
<embeddeds>
<embedded>
<groupId>${project.groupId}</groupId>
<artifactId>core.wcm.components.core</artifactId>
<filter>true</filter>
<isAllVersionsFilter>true</isAllVersionsFilter>
</embedded>
...
Adding ACS Common embedding example
Thank you for your reply @arunpatidar
Will it deploy ACS AEM Tools also?
https://adobe-consulting-services.github.io/acs-aem-tools/
Thanks & Regards,
Vishal Jain
Views
Replies
Total Likes
Views
Replies
Total Likes
Hi Vishal,
Use below MVN dependency in your project
<dependency>
<groupId>com.adobe.acs</groupId>
<artifactId>acs-aem-tools</artifactId>
<version>1.0.0</version>
<type>pom</type>
</dependency>
embed it in the pom.xml under the all folder.
Views
Likes
Replies