-
Notifications
You must be signed in to change notification settings - Fork 70
/
settings.gradle
41 lines (41 loc) · 1.11 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
pluginManagement {
repositories {
mavenLocal()
gradlePluginPortal()
google()
mavenCentral()
}
}
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories {
mavenLocal()
// :app
maven { url "https://api.xposed.info/" }
maven { url "https://s01.oss.sonatype.org/content/repositories/releases" }
// :test_ucu4
maven {
credentials {
username "mvn_read_ws"
password "mrk8929"
}
url "https://mvn.cloud.alipay.com/nexus/content/repositories/releases/"
}
maven { url 'https://maven.aliyun.com/nexus/content/groups/public/' }
// :test_crosswalk
repositories {
maven {
url 'https://download.01.org/crosswalk/releases/crosswalk/android/maven2'
}
}
// General
google()
mavenCentral()
}
}
rootProject.name = "WebViewPP"
include ':app'
include ':test_webview'
include ':test_tbsx5'
include ':test_ucu4'
include ':test_crosswalk'