event-management-frontend/settings.gradle.kts

25 lines
587 B
Plaintext
Raw Permalink Normal View History

2024-12-22 14:33:51 +00:00
pluginManagement {
repositories {
google {
content {
includeGroupByRegex("com\\.android.*")
includeGroupByRegex("com\\.google.*")
includeGroupByRegex("androidx.*")
}
}
mavenCentral()
gradlePluginPortal()
}
}
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories {
google()
mavenCentral()
maven { url = uri("https://jitpack.io") }
2024-12-22 14:33:51 +00:00
}
}
rootProject.name = "NeatCalendar"
include(":app")