I am using appengine-maven-plugin (of sdk version 1.7.4). I have created a sample maven project based on the guestbook archetype.
My artifactid is 'myApplication' but my GAE appId is something else e.g myGAEApplication.
I am trying to use the
mvn appengine:update goal, and I have altered my pom.xml with something like
<plugin>
<groupId>com.google.appengine</groupId>
<artifactId>appengine-maven-plugin</artifactId>
<version>${appengine.target.version}</version>
<configuration>
<appId>myGAEApplication</appId>
But it does not seem to work. Any ideas on having different artifactId and differentGAE app id. it is supposed to work but am I missing something?