27 lines
602 B
Kotlin
27 lines
602 B
Kotlin
pluginManagement {
|
|
repositories {
|
|
gradlePluginPortal()
|
|
mavenCentral()
|
|
google()
|
|
}
|
|
}
|
|
|
|
dependencyResolutionManagement {
|
|
repositories {
|
|
google()
|
|
mavenCentral()
|
|
}
|
|
versionCatalogs {
|
|
create("libs") {
|
|
from(files("../gradle/libs.versions.toml"))
|
|
}
|
|
}
|
|
}
|
|
|
|
plugins {
|
|
// @Hint by SuperMonster003 on Sep 14, 2025.
|
|
// ! Enable JDK auto-resolution/download capability for build modules.
|
|
// ! zh-CN: 让构建模块具备 JDK 自动解析/下载能力.
|
|
id("org.gradle.toolchains.foojay-resolver-convention")
|
|
}
|