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