chore(build): add Gradle Plugin Portal to repository list

Include `gradlePluginPortal()` in the `dependencyResolutionManagement`
repositories block within `settings.gradle.kts`. This ensures
dependencies can be resolved from the official Gradle plugin repository.
This commit is contained in:
2026-06-02 00:05:19 +02:00
parent ae1e2aa784
commit 213246a0c4
+1
View File
@@ -13,6 +13,7 @@ dependencyResolutionManagement {
repositories { repositories {
google() google()
mavenCentral() mavenCentral()
gradlePluginPortal()
maven { url = uri("https://jitpack.io") } maven { url = uri("https://jitpack.io") }
} }
} }