swh:1:snp:764524290233376de64947417267228741ce2485
Raw File
Tip revision: a7dbdea58032021361680faacf2782cf981c5332 authored by Felix GV on 30 August 2017, 22:12:50 UTC
Releasing Voldemort 1.10.26
Tip revision: a7dbdea
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')

include 'gobblin'
project(':gobblin').projectDir = file('gobblin')
back to top