LSPlant/settings.gradle.kts

14 lines
234 B
Plaintext
Raw Normal View History

2022-02-16 07:24:35 +08:00
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories {
google()
mavenCentral()
}
}
rootProject.name = "LSPlant"
include(
":library",
2022-02-18 11:01:39 +08:00
":test"
2022-02-16 07:24:35 +08:00
)