2017-06-25 18:59:32 -04:00
|
|
|
rootProject.name = 'meerkat'
|
|
|
|
|
2015-11-09 09:01:59 -05:00
|
|
|
include 'meerkat-common'
|
|
|
|
include 'voting-booth'
|
|
|
|
include 'bulletin-board-server'
|
2015-11-09 18:49:17 -05:00
|
|
|
include 'polling-station'
|
|
|
|
include 'restful-api-common'
|
2017-06-21 19:58:01 -04:00
|
|
|
include 'scanner-api-common'
|
2016-04-05 04:32:07 -04:00
|
|
|
include 'mixer'
|
2015-12-05 07:25:02 -05:00
|
|
|
include 'bulletin-board-client'
|
2016-06-16 04:21:58 -04:00
|
|
|
include 'distributed-key-generation'
|
2016-09-21 10:21:34 -04:00
|
|
|
include 'voting-booth-gui'
|
2017-07-02 20:24:00 -04:00
|
|
|
include 'bulletin-board-server-frontend'
|
2017-06-21 06:19:00 -04:00
|
|
|
|
|
|
|
// Only include the android projects if the android SDK directory is set
|
|
|
|
// we assume that if you have a local.properties file it contains
|
|
|
|
// sdk.dir=...
|
|
|
|
if(file('local.properties').exists() || System.getenv('ANDROID_HOME') != null) {
|
|
|
|
include 'android-scanner'
|
|
|
|
}
|
2017-06-25 18:59:32 -04:00
|
|
|
|
|
|
|
// Use a local version of qilin if one exists.
|
|
|
|
if (file('../qilin/settings.gradle').exists()) {
|
|
|
|
includeBuild ('../qilin') {
|
|
|
|
dependencySubstitution {
|
|
|
|
substitute module('org.factcenter.qilin:qilin') with project(':')
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|