build: Remove repos that are not required

This commit is contained in:
oSumAtrIX 2025-05-05 19:36:57 +02:00
parent 6e57a6e977
commit 5555373deb
No known key found for this signature in database
GPG Key ID: A9B3094ACDB604B4

View File

@ -1,19 +1,16 @@
pluginManagement {
repositories {
gradlePluginPortal()
google()
mavenCentral()
maven("https://jitpack.io")
mavenLocal()
google()
gradlePluginPortal()
}
}
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories {
google()
mavenCentral()
google()
maven("https://jitpack.io")
mavenLocal()
maven {
// A repository must be specified for some reason. "registry" is a dummy.
url = uri("https://maven.pkg.github.com/revanced/registry")
@ -24,5 +21,6 @@ dependencyResolutionManagement {
}
}
}
rootProject.name = "ReVanced Manager"
include(":app")