views:

31

answers:

1

Is there something I can do to not have all my modules recompiled every time I hit 'Deploy to GAE'? (Like when I don't touch GWT or client-side at all.)

It would be nice to see 'module not modified, skipping...' sometimes, instead of 'compiling 12 permutations, go get me a coffee...'.

+1  A: 

Try having an ant script that generates the war after each compile... that way you can just upload the war with no questions asked. The time spent creating the war is negligible compared to the time it takes to do a GWT compile anyway.

Sudhir Jonathan
i will try 'appcgf update' for the starters, but thank you, your advice has lead me to that executable :)
Jaroslav Záruba