Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions buildSrc/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ plugins {
}

repositories {
mavenCentral()
// Allow resolving external plugins from precompiled script plugins.
gradlePluginPortal()
}
Expand Down
7 changes: 7 additions & 0 deletions buildSrc/settings.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,13 @@
* License-Filename: LICENSE
*/

pluginManagement {
repositories {
mavenCentral()
gradlePluginPortal()
}
}

rootProject.name = "buildSrc"

dependencyResolutionManagement {
Expand Down
7 changes: 7 additions & 0 deletions settings.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -114,6 +114,13 @@ project(":storage:spi").name = "storage-spi"
project(":transport:spi").name = "transport-spi"
project(":workers:config").name = "config-worker"

pluginManagement {
repositories {
mavenCentral()
gradlePluginPortal()
}
}

plugins {
// Gradle cannot access the version catalog from here, so hard-code the dependency.
id("org.gradle.toolchains.foojay-resolver-convention").version("1.0.0")
Expand Down
Loading