mirror of
https://github.com/gitnex-org/gitnex.git
synced 2026-05-08 03:57:36 -05:00
closes #1578 closes #1583 closes #1591 Reviewed-on: https://codeberg.org/gitnex/GitNex/pulls/1582 Co-authored-by: M M Arif <mmarif@swatian.com> Co-committed-by: M M Arif <mmarif@swatian.com>
29 lines
661 B
Groovy
29 lines
661 B
Groovy
pluginManagement {
|
|
repositories {
|
|
google {
|
|
content {
|
|
includeGroupByRegex("com\\.android.*")
|
|
includeGroupByRegex("com\\.google.*")
|
|
includeGroupByRegex("androidx.*")
|
|
}
|
|
}
|
|
mavenCentral()
|
|
gradlePluginPortal()
|
|
}
|
|
}
|
|
plugins {
|
|
id 'org.gradle.toolchains.foojay-resolver-convention' version '1.0.0'
|
|
}
|
|
|
|
dependencyResolutionManagement {
|
|
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
|
|
repositories {
|
|
google()
|
|
mavenCentral()
|
|
maven { url = 'https://jitpack.io' }
|
|
}
|
|
}
|
|
|
|
rootProject.name = "GitNex"
|
|
include ':app'
|