fix: add mavenLocal() to plugin and dependency resolution management

This commit is contained in:
Kingkor Roy Tirtho 2026-08-15 22:01:56 +06:00
parent e826052691
commit 95e9d563ec

View File

@ -20,6 +20,7 @@ enableFeaturePreview("TYPESAFE_PROJECT_ACCESSORS")
pluginManagement {
repositories {
mavenLocal()
google {
mavenContent {
includeGroupAndSubgroups("androidx")
@ -29,13 +30,13 @@ pluginManagement {
}
mavenCentral()
gradlePluginPortal()
mavenLocal()
}
}
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories {
mavenLocal()
google {
mavenContent {
includeGroupAndSubgroups("androidx")
@ -45,7 +46,6 @@ dependencyResolutionManagement {
}
mavenCentral()
maven("https://jitpack.io")
mavenLocal()
}
}