Exercise-5-8-Higher-Education/settings.gradle.kts
2023-03-21 08:42:32 +03:00

18 lines
364 B
Plaintext

@file:Suppress("UnstableApiUsage")
pluginManagement {
repositories {
google()
mavenCentral()
gradlePluginPortal()
}
}
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories {
google()
mavenCentral()
}
}
rootProject.name = "LabSICampus"
include(":app")