Plugin Documentation

Plugin Documentation

Goals available for this plugin:

Goal Description
kite:create-dataset Create a named dataset whose entries conform to a defined schema.
kite:delete-dataset Delete a dataset and its metadata.
kite:deploy-app Deploy a packaged application to a Hadoop filesystem, such as HDFS.
kite:help Display help information on kite-maven-plugin.
Call mvn kite:help -Ddetail=true -Dgoal=<goal-name> to display parameter details.
kite:package-app Package an application on the local filesystem.
kite:run-app Run an app as a job on a cluster.
kite:run-tool Run a Hadoop tool on the local machine.
kite:update-dataset Update a dataset's schema.

System Requirements

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

Maven 2.0
JDK 1.6
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>org.kitesdk</groupId>
          <artifactId>kite-maven-plugin</artifactId>
          <version>1.1.0</version>
        </plugin>
        ...
      </plugins>
    </pluginManagement>
    <!-- To use the plugin goals in your POM or parent POM -->
    <plugins>
      <plugin>
        <groupId>org.kitesdk</groupId>
        <artifactId>kite-maven-plugin</artifactId>
        <version>1.1.0</version>
      </plugin>
      ...
    </plugins>
  </build>
  ...
</project>

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