mirror of
https://github.com/JustinZeus/Wholphin.git
synced 2026-07-08 15:50:16 +02:00
31 lines
912 B
Kotlin
31 lines
912 B
Kotlin
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()
|
|
@Suppress("ktlint:standard:property-naming")
|
|
val WholphinExtensionsUsername: String? by settings
|
|
if (!WholphinExtensionsUsername.isNullOrBlank()) {
|
|
maven("https://maven.pkg.github.com/damontecres/wholphin-extensions") {
|
|
name = "WholphinExtensions"
|
|
credentials(PasswordCredentials::class)
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
rootProject.name = "Wholphin"
|
|
include(":app")
|