Hi @imalakaamir , mvn clean install -PautoInstallPackageLets split this
command. mvn clean - It will delete the target folder.mvn clean install
- It will delete the target folder and install the content package
(based on packaging type mentioned in pom.xml) in the target folder and
also in local repository (.m2 folder).mvn clean install
-PautoInstallPackage - It is a maven profile. It will pick the content
package and install in your local AEM instance.For you mvn clean itself
failing. It is not...