2023-01-28 00:00:52 +01:00
|
|
|
pluginManagement {
|
2023-10-05 17:36:33 +02:00
|
|
|
repositories {
|
|
|
|
gradlePluginPortal()
|
|
|
|
google()
|
|
|
|
mavenCentral()
|
|
|
|
maven("https://jitpack.io")
|
2023-10-15 14:03:53 +02:00
|
|
|
mavenLocal()
|
2023-01-28 00:00:52 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
dependencyResolutionManagement {
|
2023-10-05 17:36:33 +02:00
|
|
|
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
|
|
|
|
repositories {
|
|
|
|
google()
|
|
|
|
mavenCentral()
|
|
|
|
maven("https://jitpack.io")
|
2023-10-15 14:03:53 +02:00
|
|
|
mavenLocal()
|
2024-03-10 19:05:47 +01:00
|
|
|
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?
|
|
|
|
}
|
|
|
|
}
|
2023-01-28 00:00:52 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
rootProject.name = "ReVanced Manager"
|
|
|
|
include(":app")
|