-
-
Notifications
You must be signed in to change notification settings - Fork 32
Expand file tree
/
Copy pathsettings.gradle.kts
More file actions
32 lines (28 loc) · 814 Bytes
/
settings.gradle.kts
File metadata and controls
32 lines (28 loc) · 814 Bytes
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
@file:Suppress("UnstableApiUsage")
pluginManagement {
repositories {
google()
gradlePluginPortal()
maven {
name = "aliucord"
url = uri("https://maven.aliucord.com/releases")
}
}
}
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories {
google()
mavenCentral()
maven {
name = "aliucord"
url = uri("https://maven.aliucord.com/releases")
}
}
}
rootProject.name = "aliucord-plugins"
include(":plugins")
// Add each directory under ./plugins as a separate project
rootDir.resolve("plugins")
.listFiles { file -> file.isDirectory && file.resolve("build.gradle.kts").exists() }!!
.forEach { include(":plugins:${it.name}") }