https://github.com/voldemort/voldemort
Raw File
Tip revision: 6e5e96ecf66325fcae3fef9add0862036b08a089 authored by Arunachalam Thirupathi on 28 July 2016, 23:19:00 UTC
Releasing Voldemort 1.10.20
Tip revision: 6e5e96e
settings.gradle

rootProject.name = 'voldemort'

// the following dance creates the subprojects (the contrib modules) and
// fixes the naming so that eclipse doesn't explode
include 'contrib-collections'
project(':contrib-collections').projectDir = file('contrib/collections')

include 'contrib-hadoop-store-builder'
project(':contrib-hadoop-store-builder').projectDir = file('contrib/hadoop-store-builder')

include 'contrib-krati'
project(':contrib-krati').projectDir = file('contrib/krati')

include 'contrib-restclient'
project(':contrib-restclient').projectDir = file('contrib/restclient')
back to top