mirror of
https://github.com/ReVanced/revanced-manager.git
synced 2024-11-10 09:07:47 +01:00
6709505e9e
Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
28 lines
849 B
Text
28 lines
849 B
Text
pluginManagement {
|
|
repositories {
|
|
gradlePluginPortal()
|
|
google()
|
|
mavenCentral()
|
|
maven("https://jitpack.io")
|
|
mavenLocal()
|
|
}
|
|
}
|
|
dependencyResolutionManagement {
|
|
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
|
|
repositories {
|
|
google()
|
|
mavenCentral()
|
|
maven("https://jitpack.io")
|
|
mavenLocal()
|
|
maven {
|
|
// A repository must be speficied for some reason. "registry" is a dummy.
|
|
url = uri("https://maven.pkg.github.com/revanced/registry")
|
|
credentials {
|
|
username = System.getenv("GITHUB_ACTOR") ?: extra["gpr.user"] as String?
|
|
password = System.getenv("GITHUB_TOKEN") ?: extra["gpr.key"] as String?
|
|
}
|
|
}
|
|
}
|
|
}
|
|
rootProject.name = "ReVanced Manager"
|
|
include(":app")
|