mirror of
https://github.com/VibedByKaKi/zt64-aliucord-plugins.git
synced 2026-08-21 22:01:15 +02:00
31 lines
No EOL
730 B
Kotlin
31 lines
No EOL
730 B
Kotlin
@file:Suppress("UnstableApiUsage")
|
|
|
|
pluginManagement {
|
|
repositories {
|
|
google()
|
|
gradlePluginPortal()
|
|
|
|
maven("https://maven.aliucord.com/releases")
|
|
maven("https://maven.aliucord.com/snapshots")
|
|
}
|
|
}
|
|
|
|
dependencyResolutionManagement {
|
|
repositories {
|
|
google()
|
|
mavenCentral()
|
|
maven("https://maven.aliucord.com/releases")
|
|
maven("https://maven.aliucord.com/snapshots")
|
|
}
|
|
|
|
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
|
|
}
|
|
|
|
rootProject.name = "aliucord-plugins"
|
|
|
|
rootDir
|
|
.resolve("plugin")
|
|
.listFiles { file ->
|
|
file.isDirectory && file.resolve("build.gradle.kts").exists()
|
|
}!!
|
|
.forEach { include(":plugin:${it.name}") } |