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