Files
TrisolarisServer/settings.gradle.kts
androidlover5842 6ffae0f9af
All checks were successful
build-and-deploy / build-deploy (push) Successful in 47s
dns -_-
2026-01-30 16:15:10 +05:30

20 lines
555 B
Kotlin

pluginManagement {
repositories {
mavenCentral()
gradlePluginPortal()
}
resolutionStrategy {
eachPlugin {
when (requested.id.id) {
"org.springframework.boot" ->
useModule("org.springframework.boot:spring-boot-gradle-plugin:${requested.version}")
"io.spring.dependency-management" ->
useModule("io.spring.gradle:dependency-management-plugin:${requested.version}")
}
}
}
}
rootProject.name = "TrisolarisServer"