forked from openzipkin/zipkin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsettings.gradle
63 lines (46 loc) · 1.21 KB
/
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
rootProject.name = 'zipkin'
def includes = [
////////////////////////////////////
// Zipkin's mostly common library //
////////////////////////////////////
// Not all projects depend on this!
'zipkin-common',
////////////////////////////////////////////////////////
// Projects with outputs that are useful on their own //
////////////////////////////////////////////////////////
'zipkin-collector-service',
'zipkin-query-service',
'zipkin-web',
/////////////////////////////////////
// Collector, and Collector inputs //
/////////////////////////////////////
'zipkin-collector',
///////////////
// Receivers //
///////////////
'zipkin-receiver-scribe',
'zipkin-receiver-kafka',
/////////////////
// Query logic //
/////////////////
'zipkin-query',
/////////////////////////////////////////////////////
// Libraries wrapping clients to external services //
/////////////////////////////////////////////////////
'zipkin-cassandra-core',
'zipkin-cassandra',
'zipkin-anormdb',
////////////
// Thrift //
////////////
'zipkin-thrift',
'zipkin-scrooge',
//////////
// Misc //
//////////
'zipkin-sampler'
]
if (System.getenv('PUBLISHING') == null) {
includes.add('zipkin-tracegen')
}
include includes.toArray(new String[0])