LSPlant/settings.gradle.kts

21 lines
350 B
Plaintext
Raw Normal View History

2022-02-20 23:53:06 +08:00
pluginManagement {
repositories {
gradlePluginPortal()
google()
mavenCentral()
}
}
2022-02-16 07:24:35 +08:00
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories {
google()
mavenCentral()
}
}
rootProject.name = "LSPlant"
include(
2022-02-20 23:53:06 +08:00
":lsplant",
":test",
2022-02-16 07:24:35 +08:00
)