-
Notifications
You must be signed in to change notification settings - Fork 40
/
settings.gradle
76 lines (67 loc) · 2.5 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
pluginManagement {
repositories {
// sonatype
// maven { url "https://s01.oss.sonatype.org/content/repositories/snapshots/" }
// maven { url 'https://oss.sonatype.org/content/repositories/public/' }
// maven { url 'https://oss.sonatype.org/content/repositories/snapshots/' }
mavenLocal()
mavenCentral()
google()
jcenter()
// aliyun maven
// mirror of google()
maven { url 'https://maven.aliyun.com/repository/google' }
// mirror of central & jcenter
maven { url 'https://maven.aliyun.com/repository/public' }
// mirror of gradlePluginPortal
maven { url 'https://maven.aliyun.com/repository/gradle-plugin' }
// internal alibaba maven
maven {
allowInsecureProtocol = true
url 'http://mvnrepo.alibaba-inc.com/mvn/repository'
}
}
}
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.PREFER_SETTINGS)
repositories {
// sonatype
// maven { url "https://s01.oss.sonatype.org/content/repositories/snapshots/" }
// maven { url 'https://oss.sonatype.org/content/repositories/public/' }
// maven { url 'https://oss.sonatype.org/content/repositories/snapshots/' }
mavenCentral()
google()
jcenter()
// aliyun maven
// mirror of google()
maven { url 'https://maven.aliyun.com/repository/google' }
// mirror of central & jcenter
maven { url 'https://maven.aliyun.com/repository/public' }
// mirror of gradlePluginPortal
maven { url 'https://maven.aliyun.com/repository/gradle-plugin' }
// internal alibaba maven
maven {
allowInsecureProtocol = true
url 'http://mvnrepo.alibaba-inc.com/mvn/repository'
}
}
}
include ':app'
include ':aliyun_sls_android_producer'
include ':aliyun_sls_android_ot'
include ':aliyun_sls_android_core'
include ':aliyun_sls_android_crashreporter_old'
include ':aliyun_sls_android_crashreporter'
include ':aliyun_sls_android_blockdetection'
include ':aliyun_sls_android_network_diagnosis'
include ':aliyun_sls_android_unity_plugin'
include ':aliyun_sls_android_trace'
include ':aliyun_sls_android_okhttp'
include ':aliyun_sls_android_ot_ktx'
include ':testable'
include ':webview_instrumentation'
include ':aliyun_sls_android_exporter_otlp'
include ':aliyun_sls_android_otel_common'
include ':okhttp_instrumentation'
include ':examples'
include ':examples:network_diagnosis'