LSPlant/settings.gradle.kts
2022-02-18 11:01:39 +08:00

14 lines
234 B
Plaintext

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