# appengine-maven-plugin **Repository Path**: mirrors_GoogleCloudPlatform/appengine-maven-plugin ## Basic Information - **Project Name**: appengine-maven-plugin - **Description**: Automatically exported from code.google.com/p/appengine-maven-plugin - **Primary Language**: Unknown - **License**: Apache-2.0 - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-08-08 - **Last Updated**: 2026-02-21 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README appengine-maven-plugin ========================= A Maven plugin to support App Engine developers. A more comprehensive document for users is available at our official Using Apache Maven documentation site. Apache Maven is a software project management and comprehension tool. It is capable of building war files for deployment into App Engine. The App Engine Maven Plugin can further simplify development beyond what Maven provides. It does so by enabling the following features in Maven. - Running the App Engine development application server - Deployment of applications to App Engine To get started, just add the plugin to Maven with: com.google.appengine appengine-maven-plugin 1.9.84 Make sure you are using Maven 3.1 or above (the 3.0.x version will not work starting with GAE 1.8.3) Then many goals including appengine:update, appengine:rollback, and appengine:devserver are now available. You can run mvn help:describe -Dplugin=appengine to see all of the available goals. A sample project is hosted on github A complete sample pom is: 4.0.0 war 1.0-SNAPSHOT com.google.appengine.demos guestbook 1.9.81 UTF-8 com.google.appengine appengine-api-1.0-sdk ${appengine.target.version} javax.servlet servlet-api 2.5 provided jstl jstl 1.2 junit junit 4.10 test org.mockito mockito-all 1.9.0 test com.google.appengine appengine-testing ${appengine.target.version} test com.google.appengine appengine-api-stubs ${appengine.target.version} test org.apache.maven.plugins 2.5.1 maven-compiler-plugin 1.8 1.8 org.apache.maven.plugins maven-war-plugin 2.3 true com.google.appengine appengine-maven-plugin ${appengine.target.version} If you are using a snapshot version (experimental), you'll need to add the Google Maven snapshot repository to your pom. google-snapshots Google Snapshots https://oss.sonatype.org/content/repositories/google-snapshots/ true false