ACS AEM Tools In AEMaaCS Via CI/CD | Community
Skip to main content
Level 3
June 17, 2025
Solved

ACS AEM Tools In AEMaaCS Via CI/CD

  • June 17, 2025
  • 2 replies
  • 594 views

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_

Best answer by giuseppebaglio

hi @vishal33

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> ...

 

 

2 replies

giuseppebaglio
giuseppebaglioAccepted solution
Level 10
June 17, 2025

hi @vishal33

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> ...

 

 
arunpatidar
Community Advisor
Community Advisor
June 17, 2025
New Member
June 24, 2025

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

rahulp76079001
Level 2
June 17, 2025

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.