I'm using the appengine-maven-plugin, and having a problem with its "update" goal -- it's executing the "package" phase as a prerequisite:
/**
* @goal update
* @execute phase="package"
*/
public class Update extends AbstractAppCfgMojo {
@Override
public void execute() throws MojoExecutionException, MojoFailureException {
....
However, I need it to do a "clean" first, then do the "package". Is there a way I can override this?