blob: 96143cf97414fd726ccadc21a9702d5ff73a8f6b [file] [log] [blame]
Apache Ignite Mesos Module
------------------------
Apache Ignite Mesos module provides integration Apache Ignite with Apache Mesos.
Importing Apache Ignite Mesos Module In Maven Project
-------------------------------------
If you are using Maven to manage dependencies of your project, you can add Mesos module
dependency like this (replace '${ignite.version}' with actual Ignite 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.apache.ignite</groupId>
<artifactId>ignite-mesos-ext</artifactId>
<version>1.0.0</version>
</dependency>
...
</dependencies>
...
</project>