forked from fengzhizi715/NetDiscovery
-
Notifications
You must be signed in to change notification settings - Fork 0
/
settings.gradle
40 lines (34 loc) · 1.15 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
rootProject.name = 'netdiscovery'
include 'core'
include 'agent'
include 'example'
include 'downloader'
include 'downloader:httpclient'
findProject(':downloader:httpclient')?.name = 'httpclient'
include 'downloader:okhttp'
findProject(':downloader:okhttp')?.name = 'okhttp'
include 'downloader:selenium'
findProject(':downloader:selenium')?.name = 'selenium'
include 'downloader:htmlunit'
findProject(':downloader:htmlunit')?.name = 'htmlunit'
include 'queue'
include 'queue:redis'
findProject(':queue:redis')?.name = 'redis'
include 'queue:kafka'
findProject(':queue:kafka')?.name = 'kafka'
include 'queue:rabbitmq'
findProject(':queue:rabbitmq')?.name = 'rabbitmq'
include 'pipeline'
include 'pipeline:couchbase'
findProject(':pipeline:couchbase')?.name = 'couchbase'
include 'pipeline:elasticsearch'
findProject(':pipeline:elasticsearch')?.name = 'elasticsearch'
include 'pipeline:redis'
findProject(':pipeline:redis')?.name = 'redis'
include 'pipeline:mongo'
findProject(':pipeline:mongo')?.name = 'mongo'
include 'kotlin'
include 'kotlin:dsl'
findProject(':kotlin:dsl')?.name = 'dsl'
include 'kotlin:coroutines'
findProject(':kotlin:coroutines')?.name = 'coroutines'