build: Simplify declaration of repositories

This commit is contained in:
oSumAtrIX
2023-10-22 23:37:19 +02:00
parent b58ea35f6a
commit 035870e08d
2 changed files with 7 additions and 9 deletions

View File

@@ -6,6 +6,13 @@ plugins {
group = "app.revanced"
repositories {
mavenCentral()
mavenLocal()
maven { url = uri("https://jitpack.io") }
google()
}
dependencies {
implementation(libs.revanced.patcher)
implementation(libs.kotlin.reflect)

View File

@@ -1,10 +1 @@
dependencyResolutionManagement {
repositories {
mavenCentral()
mavenLocal()
maven { url = uri("https://jitpack.io") }
google()
}
}
rootProject.name = "revanced-library"