mirror of
https://github.com/n08i40k/polytechnic-android.git
synced 2025-12-06 09:47:48 +03:00
32 lines
806 B
Kotlin
32 lines
806 B
Kotlin
import java.net.URI
|
|
|
|
pluginManagement {
|
|
repositories {
|
|
google {
|
|
content {
|
|
includeGroupByRegex("com\\.android.*")
|
|
includeGroupByRegex("com\\.google.*")
|
|
includeGroupByRegex("androidx.*")
|
|
}
|
|
}
|
|
maven(url = "https://artifactory-external.vkpartner.ru/artifactory/vkid-sdk-android/")
|
|
mavenCentral()
|
|
gradlePluginPortal()
|
|
}
|
|
}
|
|
|
|
@Suppress("UnstableApiUsage")
|
|
dependencyResolutionManagement {
|
|
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
|
|
repositories {
|
|
google()
|
|
mavenCentral()
|
|
maven {
|
|
url = URI("https://artifactory-external.vkpartner.ru/artifactory/vkid-sdk-android/")
|
|
}
|
|
}
|
|
}
|
|
|
|
rootProject.name = "Polytechnic"
|
|
include(":app")
|
|
|