Merge pull request #4788 from IndusAryan/repo

chore: use new repository handler instead of dependency management
This commit is contained in:
Bnyro 2023-09-17 17:02:12 +02:00 committed by GitHub
commit 9acf869ee3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 7 additions and 8 deletions

View File

@ -15,6 +15,13 @@ buildscript {
} }
} }
allprojects {
repositories {
google()
mavenCentral()
}
}
plugins { plugins {
id("com.google.devtools.ksp") version("1.9.0-1.0.13") apply false id("com.google.devtools.ksp") version("1.9.0-1.0.13") apply false
} }

View File

@ -1,11 +1,3 @@
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories {
google()
mavenCentral()
}
}
rootProject.name = "LibreTube" rootProject.name = "LibreTube"
include(":app") include(":app")