GridGain Ultimate Module
------------------------

GridGain Ultimate module provides additional features on top of GridGain Professional and GridGain Enterprise editions:
- Full and incremental cluster snapshots
- Command-line tool for snapshot management

Importing GridGain Ultimate Module In Maven Project
-------------------------------------

If you are using Maven to manage dependencies of your project, you can add Cloud module
dependency like this (replace '${gridgain.version}' with actual GridGain version you are
interested in):

<project xmlns="http://maven.apache.org/POM/4.0.0"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xsi:schemaLocation="http://maven.apache.org/POM/4.0.0
                        http://maven.apache.org/xsd/maven-4.0.0.xsd">
    ...
    <dependencies>
        ...
        <dependency>
            <groupId>org.gridgain</groupId>
            <artifactId>gridgain-ultimate</artifactId>
            <version>${gridgain.version}</version>
        </dependency>
        ...
    </dependencies>
    ...
</project>
