-
Notifications
You must be signed in to change notification settings - Fork 551
/
settings.gradle
68 lines (62 loc) · 1.76 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
pluginManagement {
repositories {
gradlePluginPortal()
google()
mavenCentral()
mavenLocal()
maven {
url "http://maven.aliyun.com/nexus/content/groups/public/"
name 'jcenter'
allowInsecureProtocol = true
}
maven {
url "https://maven.aliyun.com/repository/google"
name 'google'
}
}
}
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories {
gradlePluginPortal()
google()
mavenCentral()
mavenLocal()
maven {
url 'https://maven.aliyun.com/nexus/content/repositories/releases/'
}
maven {
url "http://maven.aliyun.com/nexus/content/groups/public/"
name 'jcenter'
allowInsecureProtocol = true
}
maven {
url "https://maven.aliyun.com/repository/google"
name 'google'
}
maven {
url 'http://nexus-ce.emas-poc.com/repository/maven-public/'
credentials {
username = 'CenterExperience'
password = '77kkyy99'
}
allowInsecureProtocol = true
}
maven {
url 'https://developer.huawei.com/repo/'
}
}
ext.loggerVersion = '1.2.0'
ext.senderVersion = '1.1.6'
ext.crashDefendVersion = '0.0.6'
ext.utdidVersion = '2.6.0'
ext.beaconVersion = '1.0.8'
ext.ipdetectorVersion = '1.0.0'
}
include ':man_android_demo', ':devops_android_demo',
':httpdns_api_demo',
':httpdns_android_demo',
':mpush_android_demo',
':feedback_android_demo',
':ha_android_demo',
':hotfix_android_demo'