Ok, thanks. I figured out how to have maven do the upload by using the exec
plugin. So now I can do a "mvn clean package exec:exec" and it does it all in
one go. What I'd really like is to be able to run the test jetty on my desktop.
<build>
<plugins>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>exec-maven-plugin</artifactId>
<version>1.1</version>
<executions>
<execution>
<phase>deploy</phase>
<goals>
<goal>exec</goal>
</goals>
</execution>
</executions>
<configuration>
<executable>C:/users/rusty/java/distributions/extracted/appengine-java-sdk-1.2.8/bin/appcfg.cmd</executable>
<workingDirectory>${project.build.directory}/${project.artifactId}-${project.version}</workingDirectory>
<arguments>
<argument>[email protected]</argument>
<argument>update</argument>
<argument>${project.build.directory}/${project.artifactId}-${project.version}</argument>
</arguments>
</configuration>
</plugin>
</plugins>
</build>
McBeelen wrote:
> Rusty,
>
> Currently the Google Plugin works with a hardcoded path to the webapp-
> directory.
> An issue has already been filles (http://code.google.com/p/
> googleappengine/issues/detail?id=1515) and accepted, so I guess it
> will be fixed anytime soon.
>
> I still use Eclipse to write my application, build the project with
> Maven, and upload to GAE with the command-line.
> A little work around, but doable.
>
>
> Cheers,
> MArco
>
>
> On Dec 5, 7:45 pm, Rusty Wright <[email protected]> wrote:
>> Is it possible to use the GAE Eclipse plugin if you're using Maven? Maven
>> uses a different directory structure so I'm guessing that's why the GAE
>> plugin doesn't recognize the project as a GAE web app.
>
> --
>
> You received this message because you are subscribed to the Google Groups
> "Google App Engine for Java" group.
> To post to this group, send email to [email protected].
> To unsubscribe from this group, send email to
> [email protected].
> For more options, visit this group at
> http://groups.google.com/group/google-appengine-java?hl=en.
>
>
--
You received this message because you are subscribed to the Google Groups
"Google App Engine for Java" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to
[email protected].
For more options, visit this group at
http://groups.google.com/group/google-appengine-java?hl=en.