When I run mvn appengine:update
on my Maven Java project, other goals from the Maven build lifecycle are executed in addition to just deploying a Google App Engine app. For example, running mvn appengine:update
will spin off copy-resources
and compile
goals automatically.
I am not saying that this is necessarily a bad thing, but I am really interested in understanding how and why the other Maven goals are executed. What are the settings for appengine:update
that makes these other goals run? How can I override it?
Reference: Google's Maven plugin for GAE