Skip to content
Christopher Rost edited this page Mar 6, 2018 · 23 revisions

Requirements

Setup

The easiest way to use gradoop is to add one of the following maven dependencies to your project.

Stable:

<dependency>
    <groupId>org.gradoop</groupId>
    <artifactId>gradoop-flink</artifactId>
    <version>0.3.2</version>
</dependency>

Latest nightly build (additional repository is required):

<repositories>
    <repository>
        <id>oss.sonatype.org-snapshot</id>
        <url>http://oss.sonatype.org/content/repositories/snapshots</url>
        <releases><enabled>false</enabled></releases>
        <snapshots><enabled>true</enabled></snapshots>
    </repository>
</repositories>
<dependency>
    <groupId>org.gradoop</groupId>
    <artifactId>gradoop-flink</artifactId>
    <version>0.3.3-SNAPSHOT</version>
</dependency>

Quickstart application

To be done.