Plugin Documentation

Goals available for this plugin:

Goal Description
google:appengine-cron-info Displays times for the next several runs of each cron job.
google:appengine-deploy Deploys exploded WAR to AppEngine
google:appengine-logs Requests logs from AppEngine
google:appengine-rollback Rolls back deployment
google:appengine-run Runs AppEngine development server
google:appengine-start Starts AppEngine development server. Intended to use with appengine-stop around integration-test phase.
google:appengine-stop Stops AppEngine development server what was started using appengine-start.
google:appengine-unpack Unpacks AppEngine SDK in ~/.m2

Also this is done automatically in all Mojos what needs AppEngine SDK

google:appengine-update-cron Update application cron jobs
google:appengine-update-indexes Update application indexes
google:appengine-update-queues Update application task queue definitions
google:gwt-compile Compiles GWT module(s) and attaches them to project as jar with "gwt" classifier.
google:gwt-run Runs GWT DevMode server optionally with AppEngine launcher
google:gwt-test Runs GWTTestCase classes

System Requirements

The following specifies the minimum requirements to run this Maven plugin:

Maven 2.0
JDK 1.5
Memory No minimum requirement.
Disk Space No minimum requirement.

Usage

You should specify the version in your project's plugin configuration:

<project>
  ...
  <build>
    <!-- To define the plugin version in your parent POM -->
    <pluginManagement>
      <plugins>
        <plugin>
          <groupId>com.amateurinmotion.mojo</groupId>
          <artifactId>google-maven-plugin</artifactId>
          <version>1.6-SNAPSHOT</version>
        </plugin>
        ...
      </plugins>
    </pluginManagement>
    <!-- To use the plugin goals in your POM or parent POM -->
    <plugins>
      <plugin>
        <groupId>com.amateurinmotion.mojo</groupId>
        <artifactId>google-maven-plugin</artifactId>
        <version>1.6-SNAPSHOT</version>
      </plugin>
      ...
    </plugins>
  </build>
  ...
</project>

For more information, see "Guide to Configuring Plug-ins"