Rakesh
Rakesh

Reputation: 23

update code and reflect the changes in AEM CQ5

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

Answers (2)

SubSul
SubSul

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

jiggy
jiggy

Reputation: 3836

You can sync repository items with vault. One at a time or with vault sync. There vault plugins available for both Eclipse and IntelliJ.

Upvotes: 0

Related Questions