Expand my Community achievements bar.

Submissions are now open for the 2026 Adobe Experience Maker Awards.
SOLVED

ACS AEM Tools In AEMaaCS Via CI/CD

Avatar

Level 3

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_

Topics

Topics help categorize Community content and increase your ability to discover relevant content.

1 Accepted Solution

Avatar

Correct answer by
Level 10

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

 

 

View solution in original post

5 Replies

Avatar

Correct answer by
Level 10

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

 

 

Avatar

Community Advisor

Avatar

Level 1

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

Avatar

Community Advisor

Hi @VishalJa8 

No, it won’t—but you can deploy it too using a similar approach.

Arun Patidar

AEM LinksLinkedIn

Avatar

Level 2

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.