-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathsettings.gradle
88 lines (59 loc) · 2.44 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
rootProject.name = 'cookbook'
include 'aggregations'
project(':aggregations').projectDir = file('aggregations')
include 'auth-policy'
project(':auth-policy').projectDir = file('auth_policy')
include 'command-lanes'
project(':command-lanes').projectDir = file('command_lanes')
include 'demand-value-lanes'
project(':demand-value-lanes').projectDir = file('demand_value_lanes')
include 'demand-map-lanes'
project(':demand-map-lanes').projectDir = file('demand_map_lanes')
include 'downlinks'
project(':downlinks').projectDir = file('downlinks')
include 'egress-bridges'
project(':egress-bridges').projectDir = file('egress_bridges')
include 'forms'
project(':forms').projectDir = file('forms')
include 'http-ingestion'
project(':http-ingestion').projectDir = file('http_ingestion')
include 'http-lanes'
project(':http-lanes').projectDir = file('http_lanes')
include 'ingress-bridges'
project(':ingress-bridges').projectDir = file('ingress_bridges')
include 'introspection'
project(':introspection').projectDir = file('introspection')
include 'jms-ingestion'
project(':jms-ingestion').projectDir = file('jms_ingestion')
include 'join-map-lanes'
project(':join-map-lanes').projectDir = file('join_map_lanes')
include 'join-value-lanes'
project(':join-value-lanes').projectDir = file('join_value_lanes')
include 'kafka-ingestion'
project(':kafka-ingestion').projectDir = file('kafka_ingestion')
include 'map-lanes'
project(':map-lanes').projectDir = file('map_lanes')
include 'mongodb-ingestion'
project(':mongodb-ingestion').projectDir = file('mongodb_ingestion')
include 'planes'
project(':planes').projectDir = file('planes')
include 'pulsar-ingestion'
project(':pulsar-ingestion').projectDir = file('pulsar_ingestion')
include 'server-downlinks'
project(':server-downlinks').projectDir = file('server_downlinks')
include 'summary-statistics'
project(':summary-statistics').projectDir = file('summary_statistics')
include 'time-series'
project(':time-series').projectDir = file('time_series')
include 'timers'
project(':timers').projectDir = file('timers')
include 'traits'
project(':traits').projectDir = file('traits')
include 'value-lanes'
project(':value-lanes').projectDir = file('value_lanes')
include 'web-agents'
project(':web-agents').projectDir = file('web_agents')
include 'web-agents-server-recon'
project(':web-agents-server-recon').projectDir = file('web_agents_server_recon')
include 'agent_auth'
project(':agent_auth').projectDir = file('agent_auth')