forked from kkevsekk1/AutoX
-
Notifications
You must be signed in to change notification settings - Fork 0
/
settings.gradle.kts
40 lines (38 loc) · 1.1 KB
/
settings.gradle.kts
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
pluginManagement {
includeBuild("build-logic")
repositories {
google()
mavenCentral()
gradlePluginPortal()
}
}
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories {
//首选国外镜像加快github CI
google()
mavenCentral()
maven("https://www.jitpack.io")
maven("https://120.25.164.233:8081/nexus/content/groups/public/")
maven("https://maven.aliyun.com/repository/central")
google { url = uri("https://maven.aliyun.com/repository/google") }
mavenCentral { url = uri("https://maven.aliyun.com/repository/public") }
}
}
rootProject.name = "AutoX"
enableFeaturePreview("TYPESAFE_PROJECT_ACCESSORS")
include(":app")
include(":automator")
include(":common")
include(":autojs")
include(":inrt")
include(":apkbuilder")
include(":LocalRepo:libtermexec")
include(":LocalRepo:emulatorview")
include(":LocalRepo:term")
include(":LocalRepo:p7zip")
include(":LocalRepo:OpenCV")
include(":paddleocr")
include(":codeeditor")
include(":core:model")
include(":core:network")