Plugin Documentation

Goals available for this plugin:

GoalDescription
phonegap-build:buildCompress the exploded package to a zip using the specified filters. Add in the config.xml from src/main/phonegap-build/. The compressed artifact will then be uploaded to either a pre-existing cloud app instance or a new one depending on whether a stored app id can be found.
phonegap-build:cleanDelete the cloud app and keys if found.
phonegap-build:listLists any cloud apps or keys.
phonegap-build:scorchDelete any cloud apps or keys.

System Requirements

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

Maven2.0
JDK1.6
MemoryNo minimum requirement.
Disk SpaceNo 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.github.chrisprice</groupId>
          <artifactId>phonegap-build-maven-plugin</artifactId>
          <version>0.0.8-SNAPSHOT</version>
        </plugin>
        ...
      </plugins>
    </pluginManagement>
    <!-- To use the plugin goals in your POM or parent POM -->
    <plugins>
      <plugin>
        <groupId>com.github.chrisprice</groupId>
        <artifactId>phonegap-build-maven-plugin</artifactId>
        <version>0.0.8-SNAPSHOT</version>
      </plugin>
      ...
    </plugins>
  </build>
  ...
</project>

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