-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathsettings.gradle.kts
31 lines (27 loc) · 959 Bytes
/
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
pluginManagement {
repositories {
google()
mavenCentral()
gradlePluginPortal()
}
}
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories {
google()
mavenCentral()
mavenLocal()
maven { url = uri("https://maven.aliyun.com/repository/public/") }
maven { url = uri("https://maven.aliyun.com/repository/google/") }
maven { url = uri("https://maven.aliyun.com/repository/gradle-plugin/") }
maven { url = uri("https://dl.bintray.com/ppartisan/maven/") }
maven { url = uri("https://clojars.org/repo/") }
maven { url = uri("https://jitpack.io") }
maven { url = uri("https://api.xposed.info/") }
}
}
includeBuild("build-plugin")
rootProject.name = "Tim小助手"
include(":app")
include(":annotation-scanner")
project(":annotation-scanner").projectDir = file("./libs/annotation-scanner")