Skip to content
Cédric Murer edited this page Sep 7, 2015 · 3 revisions

Getting Started

Contents

There are different ways you can get Mesos:

  1. Download the latest stable release from https://nexus.viadeobackoffice.com
  2. Clone the Kasper git repository
$ git clone git@github.com:viadeo/kasper-framework.git

Example to get dependencies for Maven :

<dependency>
    <groupId>com.viadeo.kasper</groupId>
    <artifactId>kasper-core</artifactId>
    <version>x.y.z</version>
</dependency>

and for gradle :

com.viadeo.kasper:kasper-core.y.z

You need Java 7 or later. Alone kasper-api and kasper-client modules are compiled with Java 6 in order to be compatible with the largest number of customers.

To checkout the source and build:

$ git clone git@github.com:viadeo/kasper-framework.git
$ cd kasper-framework
$ ./gradlew build

To do a clean build

$ ./gradlew clean build

On a clean build you will see the the unit tests be run.

Clone this wiki locally