-
Notifications
You must be signed in to change notification settings - Fork 26
/
settings.gradle
65 lines (53 loc) · 1.58 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
pluginManagement {
repositories {
google()
gradlePluginPortal()
mavenCentral()
// Used for snapshots
maven { url "https://s01.oss.sonatype.org/content/repositories/snapshots/" }
maven { url "https://plugins.gradle.org/m2/" }
}
}
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories {
google()
mavenCentral()
mavenLocal()
// Used for snapshots
maven { url "https://s01.oss.sonatype.org/content/repositories/snapshots/" }
flatDir {
dirs 'thirdLibs'
}
}
}
rootProject.name = "GrowingIO SDK"
// tools
include ':growingio-annotation'
include ':growingio-annotation:compiler'
include ':growingio-annotation:json-serializer'
include ':growingio-tracker-core'
include ':growingio-autotracker-core'
include ':growingio-hybrid'
include ':growingio-network:okhttp3'
include ':growingio-network:urlconnection'
include ':growingio-webservice:debugger'
include ':growingio-webservice:circler'
include ':growingio-apm'
include ':growingio-ads'
include ':growingio-abtest'
include ':growingio-data:protobuf'
include ':growingio-data:json'
include ':growingio-data:encoder'
include ':growingio-data:database'
include ':growingio-tools:snappy'
include ':growingio-tools:oaid'
include ':growingio-tools:platform'
// sdks
include ':gio-sdk:tracker'
include ':gio-sdk:tracker-cdp'
include ':gio-sdk:autotracker'
include ':gio-sdk:autotracker-cdp'
include ':gio-sdk:autotracker-saas'
include ':growingio-sdk-bom'
include ':growingio-flutter'