LSPlant/settings.gradle.kts
2023-06-27 15:52:48 +08:00

21 lines
350 B
Plaintext

pluginManagement {
repositories {
gradlePluginPortal()
google()
mavenCentral()
}
}
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories {
google()
mavenCentral()
}
}
rootProject.name = "LSPlant"
include(
":lsplant",
":test",
)