I need to run "mvn clean install -PautoInstallBundle" every time I do any small change in my servlet class and it takes nearly 30 minutes do deploy everything... Is there a better way to build and sent only core module to the AEM instance?
Solved! Go to Solution.
Views
Replies
Total Likes
Hi @rute ,
The Maven Sling Plugin allows the core bundle to be deployed to AEM directly leveraging the autoInstallBundle
profile as defined in the parent POM.
mvn -PautoInstallBundle clean install
I believe you are on core module and running above command - for more details please refer: https://experienceleague.adobe.com/docs/experience-manager-core-components/using/developing/archetyp...
Hope that helps!
Regards,
Santosh
Hi @rute ,
The Maven Sling Plugin allows the core bundle to be deployed to AEM directly leveraging the autoInstallBundle
profile as defined in the parent POM.
mvn -PautoInstallBundle clean install
I believe you are on core module and running above command - for more details please refer: https://experienceleague.adobe.com/docs/experience-manager-core-components/using/developing/archetyp...
Hope that helps!
Regards,
Santosh
Go to code module path like
cd <project>/core and run below command. It will deploy only core module.
mvn clean install -PautoInstallBundle
You can also do skiptests for local work:
mvn clean install -PautoInstallBundle -DskipTests=true
Views
Likes
Replies