Reputation: 23
How to see instantly update the code and see that it is reflected without firing up Maven Clean Install again and again in AEM CQ5 project? I know it can be possible through JRebel in normal Java projects. But I am not sure in AEM Projects.
Upvotes: 0
Views: 926
Reputation: 2563
As mentioned by jiggy, code changes in /apps(component jsps ..), /etc (css, js..), etc can be synced with AEM using vault plugin. This does not require rebuild/package/deploy to AEM using 'mvn clean install'.
Server side(java files) changes however requires firing up 'maven clean install' and installing the new generated bundle either manually or automatically via profiles in maven POM to AEM.
Upvotes: 1