forked from elki-project/elki
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsettings.gradle
33 lines (31 loc) · 883 Bytes
/
settings.gradle
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
rootProject.name = "ELKI Data Mining Framework"
def module(m, d=null) {
include ":$m"
if (!d) d = m
project(":$m").projectDir = "$rootDir/$d" as File
}
module 'elki-logging'
module 'elki-core-api'
module 'elki-core-math'
module 'elki-core-util'
module 'elki-core-data'
module 'elki-core-distance'
module 'elki-core-dbids'
module 'elki-core-dbids-int'
module 'elki-persistent'
module 'elki-index'
module 'elki-index-rtree'
module 'elki-index-mtree'
module 'elki-gui-minigui'
module 'elki'
module 'elki-docutil'
// Addons:
module 'elki-batik-visualization', 'addons/batikvis'
module 'elki-uncertain', 'addons/uncertain'
module 'elki-libsvm', 'addons/libsvm'
// module 'elki-lucene', 'addons/lucene'
// module 'elki-3dpc', 'addons/3dpc'
// module 'elki-joglvis', 'addons/joglvis'
module 'elki-tutorial', 'addons/tutorial'
// Fat-jar bundle
module 'elki-bundle', 'addons/bundle'