-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsettings.gradle.kts
46 lines (36 loc) · 1.28 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
41
42
pluginManagement {
repositories {
gradlePluginPortal()
maven("https://maven.aliyun.com/repository/google")
maven("https://maven.aliyun.com/repository/public")
maven("https://maven.aliyun.com/repository/gradle-plugin")
google()
mavenCentral()
maven("https://jitpack.io")
maven("https://repo.gradle.org/gradle/libs-releases")
}
}
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories {
maven("https://maven.aliyun.com/repository/public")
maven("https://maven.aliyun.com/repository/google")
maven("https://maven.aliyun.com/repository/gradle-plugin")
google()
mavenCentral()
maven("https://s01.oss.sonatype.org/content/groups/public")
maven("https://s01.oss.sonatype.org/content/repositories/snapshots")
maven("https://jitpack.io")
maven("https://repo.gradle.org/gradle/libs-releases")
maven("https://maven.repository.redhat.com/ga/")
}
}
include(":app", ":terminal-view", ":virtual-process")
rootProject.name = "MyLuaApp-Build-Core"
file("subprojects")
.listFiles()
?.forEach { dir ->
include(dir.name)
project(":${dir.name}")
.projectDir = dir
}