Level 1
Level 2
Sign in to Community
Learn more
Sign in to view all badges
Expand my Community achievements bar.
This conversation has been locked due to inactivity. Please create a new post.
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.
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.
autoInstallBundle
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
View solution in original post
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